Bug 1564314 - Move gdbpp back to python/. r=nalexander

Somehow bug 1346025 moved it to third_party/python but... it's not third
party code.

Differential Revision: https://phabricator.services.mozilla.com/D37364

--HG--
rename : third_party/python/gdbpp/gdbpp/__init__.py => python/gdbpp/gdbpp/__init__.py
rename : third_party/python/gdbpp/gdbpp/enumset.py => python/gdbpp/gdbpp/enumset.py
rename : third_party/python/gdbpp/gdbpp/linkedlist.py => python/gdbpp/gdbpp/linkedlist.py
rename : third_party/python/gdbpp/gdbpp/owningthread.py => python/gdbpp/gdbpp/owningthread.py
rename : third_party/python/gdbpp/gdbpp/smartptr.py => python/gdbpp/gdbpp/smartptr.py
rename : third_party/python/gdbpp/gdbpp/string.py => python/gdbpp/gdbpp/string.py
rename : third_party/python/gdbpp/gdbpp/tarray.py => python/gdbpp/gdbpp/tarray.py
rename : third_party/python/gdbpp/gdbpp/thashtable.py => python/gdbpp/gdbpp/thashtable.py
extra : moz-landing-system : lando
This commit is contained in:
Mike Hommey 2019-07-11 02:39:31 +00:00
Родитель 1ba9c0e4cd
Коммит f7f0525dc1
12 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -1,5 +1,5 @@
python
import sys
sys.path.append('third_party/python/gdbpp/')
sys.path.append('python/gdbpp/')
import gdbpp
end

Просмотреть файл

@ -1,6 +1,6 @@
#filter substitution
python
import sys
sys.path.append('@topsrcdir@/third_party/python/gdbpp')
sys.path.append('@topsrcdir@/python/gdbpp')
import gdbpp
end

Просмотреть файл

Просмотреть файл

Просмотреть файл

@ -11,6 +11,9 @@ with Files('**'):
with Files('devtools/**'):
BUG_COMPONENT = ('DevTools', 'General')
with Files('gdbpp/**'):
BUG_COMPONENT = ('Firefox Build System', 'General')
with Files('mach/**'):
BUG_COMPONENT = ('Firefox Build System', 'Mach Core')

3
third_party/python/moz.build поставляемый
Просмотреть файл

@ -32,9 +32,6 @@ with Files('enum34/**'):
with Files('futures/**'):
BUG_COMPONENT = ('Firefox Build System', 'General')
with Files('gdbpp/**'):
BUG_COMPONENT = ('Firefox Build System', 'General')
with Files('jsmin/**'):
BUG_COMPONENT = ('Firefox for Android', 'Build Config & IDE Support')