Skip to content

Commit

Permalink
Bug 1217687 - Revert back to including /devtools via toolkit. r=glandium
Browse files Browse the repository at this point in the history
  • Loading branch information
jryans committed Oct 23, 2015
1 parent 6d72f3d commit 64bf2d6
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
1 change: 0 additions & 1 deletion b2g/app.mozbuild
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ if CONFIG['MOZ_EXTENSIONS']:
DIRS += [
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
'/b2g',
'/devtools',
]
1 change: 0 additions & 1 deletion b2g/graphene/app.mozbuild
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ if CONFIG['MOZ_EXTENSIONS']:
DIRS += [
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
'/b2g',
'/devtools',
]

# Add the defaults settings.
Expand Down
1 change: 0 additions & 1 deletion browser/moz.build
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ DIRS += [
'modules',
'themes',
'extensions',
'/devtools',
]

DIRS += [
Expand Down
19 changes: 14 additions & 5 deletions devtools/moz.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,22 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

if CONFIG['MOZ_DEVTOOLS'] not in ('all', 'server'):
error('Unsupported MOZ_DEVTOOLS value: %s' % (CONFIG['MOZ_DEVTOOLS']))

if CONFIG['MOZ_DEVTOOLS'] == 'all':
DIRS += [
'client',
]

if CONFIG['MOZ_DEVTOOLS'] in ('all', 'server'):
DIRS += [
'server',
'shared',
]
DIRS += [
'server',
'shared',
]

# /browser uses DIST_SUBDIR. We opt-in to this treatment when building
# DevTools for the browser to keep the root omni.ja slim for use by external XUL
# apps. Mulet also uses this since it includes /browser.
if CONFIG['MOZ_BUILD_APP'] in ('browser', 'b2g/dev'):
DIST_SUBDIR = 'browser'
export('DIST_SUBDIR')
4 changes: 0 additions & 4 deletions embedding/ios/app.mozbuild
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,3 @@ include('/toolkit/toolkit.mozbuild')

if CONFIG['MOZ_EXTENSIONS']:
DIRS += ['/extensions']

DIRS += [
'/devtools',
]
1 change: 0 additions & 1 deletion mobile/android/app.mozbuild
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ if CONFIG['MOZ_EXTENSIONS']:
DIRS += [
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
'/mobile/android',
'/devtools',
]
1 change: 0 additions & 1 deletion mobile/android/b2gdroid/app.mozbuild
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ if CONFIG['MOZ_EXTENSIONS']:
DIRS += [
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
'/mobile/android/b2gdroid',
'/devtools',
]
1 change: 1 addition & 0 deletions toolkit/toolkit.mozbuild
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ if CONFIG['MOZ_PREF_EXTENSIONS']:
DIRS += ['/extensions/pref']

DIRS += [
'/devtools',
'/services',
'/startupcache',
'/js/ductwork/debugger',
Expand Down
1 change: 0 additions & 1 deletion xulrunner/app.mozbuild
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,4 @@ if CONFIG['MOZ_EXTENSIONS']:

DIRS += [
'/xulrunner',
'/devtools',
]

0 comments on commit 64bf2d6

Please sign in to comment.