moz.build 982 B

12345678910111213141516171819202122232425262728293031
  1. # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
  2. # This Source Code Form is subject to the terms of the Mozilla Public
  3. # License, v. 2.0. If a copy of the MPL was not distributed with this
  4. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. # Unlike most DevTools build files, this file does not use DevToolsModules
  6. # because these files are here for add-on compatibility, and so they must be
  7. # installed to previously defined locations.
  8. # These shims for legacy paths expect to be installed as if they were part of
  9. # /toolkit modules. Disable any DIST_SUBDIR from parent files here.
  10. DIST_SUBDIR = ''
  11. EXTRA_JS_MODULES.devtools += [
  12. 'Console.jsm',
  13. 'dbg-client.jsm',
  14. 'event-emitter.js',
  15. 'Loader.jsm',
  16. 'Simulator.jsm',
  17. ]
  18. # Extra compatibility layer for transitional URLs used for part of 44 cycle
  19. EXTRA_JS_MODULES.devtools.shared += [
  20. 'Console.jsm',
  21. 'Loader.jsm',
  22. ]
  23. EXTRA_JS_MODULES.devtools.shared.apps += [
  24. 'Simulator.jsm',
  25. ]