Bug 1203159 - Update shim install locations. r=glandium,ochameau

Add more shim paths for JSM locations used during the 44 cycle for add-ons that
already migrated.  Also, clear any DIST_SUBDIR value for the shim directory only
to ensure the old paths are reachable.
This commit is contained in:
J. Ryan Stinnett 2015-10-13 18:51:38 -05:00
parent 986f2a5cde
commit 4d22d4a91b
3 changed files with 19 additions and 1 deletions

View File

@ -11,3 +11,8 @@
EXTRA_JS_MODULES.devtools += [
'gDevTools.jsm',
]
# Extra compatibility layer for transitional URLs used for part of 44 cycle
EXTRA_JS_MODULES.devtools.client.framework += [
'gDevTools.jsm',
]

View File

@ -8,6 +8,10 @@
# because these files are here for add-on compatibility, and so they must be
# installed to previously defined locations.
# These shims for legacy paths expect to be installed as if they were part of
# /toolkit modules. Disable any DIST_SUBDIR from parent files here.
DIST_SUBDIR = ''
EXTRA_JS_MODULES.devtools += [
'dbg-server.jsm',
]

View File

@ -8,6 +8,10 @@
# because these files are here for add-on compatibility, and so they must be
# installed to previously defined locations.
# These shims for legacy paths expect to be installed as if they were part of
# /toolkit modules. Disable any DIST_SUBDIR from parent files here.
DIST_SUBDIR = ''
EXTRA_JS_MODULES.devtools += [
'Console.jsm',
'dbg-client.jsm',
@ -16,7 +20,12 @@ EXTRA_JS_MODULES.devtools += [
'Simulator.jsm',
]
# Extra compatibility layer for transitional URL used in middle of fx44 cycle
# Extra compatibility layer for transitional URLs used for part of 44 cycle
EXTRA_JS_MODULES.devtools.shared += [
'Console.jsm',
'Loader.jsm',
]
EXTRA_JS_MODULES.devtools.shared.apps += [
'Simulator.jsm',
]