Skip to content

Commit

Permalink
Bug 1564314 - Move gdbpp back to python/. r=nalexander
Browse files Browse the repository at this point in the history
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
  • Loading branch information
glandium committed Jul 11, 2019
1 parent 1ba9c0e commit f7f0525
Show file tree
Hide file tree
Showing 12 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gdbinit_python
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
python
import sys
sys.path.append('third_party/python/gdbpp/')
sys.path.append('python/gdbpp/')
import gdbpp
end
2 changes: 1 addition & 1 deletion build/.gdbinit_python.in
Original file line number Diff line number Diff line change
@@ -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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions python/moz.build
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down
3 changes: 0 additions & 3 deletions third_party/python/moz.build
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit f7f0525

Please sign in to comment.