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
092d843be1
commit
4268b06e64
@ -12,5 +12,4 @@ if CONFIG['MOZ_EXTENSIONS']:
|
|||||||
DIRS += [
|
DIRS += [
|
||||||
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
||||||
'/b2g',
|
'/b2g',
|
||||||
'/devtools',
|
|
||||||
]
|
]
|
||||||
|
@ -11,7 +11,6 @@ if CONFIG['MOZ_EXTENSIONS']:
|
|||||||
DIRS += [
|
DIRS += [
|
||||||
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
||||||
'/b2g',
|
'/b2g',
|
||||||
'/devtools',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
# Add the defaults settings.
|
# Add the defaults settings.
|
||||||
|
@ -17,7 +17,6 @@ DIRS += [
|
|||||||
'modules',
|
'modules',
|
||||||
'themes',
|
'themes',
|
||||||
'extensions',
|
'extensions',
|
||||||
'/devtools',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
DIRS += [
|
DIRS += [
|
||||||
|
@ -4,13 +4,22 @@
|
|||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
# 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/.
|
# 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':
|
if CONFIG['MOZ_DEVTOOLS'] == 'all':
|
||||||
DIRS += [
|
DIRS += [
|
||||||
'client',
|
'client',
|
||||||
]
|
]
|
||||||
|
|
||||||
if CONFIG['MOZ_DEVTOOLS'] in ('all', 'server'):
|
DIRS += [
|
||||||
DIRS += [
|
'server',
|
||||||
'server',
|
'shared',
|
||||||
'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']:
|
if CONFIG['MOZ_EXTENSIONS']:
|
||||||
DIRS += ['/extensions']
|
DIRS += ['/extensions']
|
||||||
|
|
||||||
DIRS += [
|
|
||||||
'/devtools',
|
|
||||||
]
|
|
||||||
|
@ -14,5 +14,4 @@ if CONFIG['MOZ_EXTENSIONS']:
|
|||||||
DIRS += [
|
DIRS += [
|
||||||
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
||||||
'/mobile/android',
|
'/mobile/android',
|
||||||
'/devtools',
|
|
||||||
]
|
]
|
||||||
|
@ -14,5 +14,4 @@ if CONFIG['MOZ_EXTENSIONS']:
|
|||||||
DIRS += [
|
DIRS += [
|
||||||
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
||||||
'/mobile/android/b2gdroid',
|
'/mobile/android/b2gdroid',
|
||||||
'/devtools',
|
|
||||||
]
|
]
|
||||||
|
@ -140,6 +140,7 @@ if CONFIG['MOZ_PREF_EXTENSIONS']:
|
|||||||
DIRS += ['/extensions/pref']
|
DIRS += ['/extensions/pref']
|
||||||
|
|
||||||
DIRS += [
|
DIRS += [
|
||||||
|
'/devtools',
|
||||||
'/services',
|
'/services',
|
||||||
'/startupcache',
|
'/startupcache',
|
||||||
'/js/ductwork/debugger',
|
'/js/ductwork/debugger',
|
||||||
|
@ -10,5 +10,4 @@ if CONFIG['MOZ_EXTENSIONS']:
|
|||||||
|
|
||||||
DIRS += [
|
DIRS += [
|
||||||
'/xulrunner',
|
'/xulrunner',
|
||||||
'/devtools',
|
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user