mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1217687 - Revert back to including /devtools via toolkit. r=glandium
This commit is contained in:
parent
6c65d07981
commit
9e7bc53212
@ -12,5 +12,4 @@ if CONFIG['MOZ_EXTENSIONS']:
|
||||
DIRS += [
|
||||
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
||||
'/b2g',
|
||||
'/devtools',
|
||||
]
|
||||
|
@ -11,7 +11,6 @@ if CONFIG['MOZ_EXTENSIONS']:
|
||||
DIRS += [
|
||||
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
||||
'/b2g',
|
||||
'/devtools',
|
||||
]
|
||||
|
||||
# Add the defaults settings.
|
||||
|
@ -17,7 +17,6 @@ DIRS += [
|
||||
'modules',
|
||||
'themes',
|
||||
'extensions',
|
||||
'/devtools',
|
||||
]
|
||||
|
||||
DIRS += [
|
||||
|
@ -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')
|
||||
|
@ -8,7 +8,3 @@ include('/toolkit/toolkit.mozbuild')
|
||||
|
||||
if CONFIG['MOZ_EXTENSIONS']:
|
||||
DIRS += ['/extensions']
|
||||
|
||||
DIRS += [
|
||||
'/devtools',
|
||||
]
|
||||
|
@ -14,5 +14,4 @@ if CONFIG['MOZ_EXTENSIONS']:
|
||||
DIRS += [
|
||||
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
||||
'/mobile/android',
|
||||
'/devtools',
|
||||
]
|
||||
|
@ -14,5 +14,4 @@ if CONFIG['MOZ_EXTENSIONS']:
|
||||
DIRS += [
|
||||
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
||||
'/mobile/android/b2gdroid',
|
||||
'/devtools',
|
||||
]
|
||||
|
@ -140,6 +140,7 @@ if CONFIG['MOZ_PREF_EXTENSIONS']:
|
||||
DIRS += ['/extensions/pref']
|
||||
|
||||
DIRS += [
|
||||
'/devtools',
|
||||
'/services',
|
||||
'/startupcache',
|
||||
'/js/ductwork/debugger',
|
||||
|
@ -10,5 +10,4 @@ if CONFIG['MOZ_EXTENSIONS']:
|
||||
|
||||
DIRS += [
|
||||
'/xulrunner',
|
||||
'/devtools',
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user