moz.build 706 B

1234567891011121314151617181920212223242526272829
  1. # This Source Code Form is subject to the terms of the Mozilla Public
  2. # License, v. 2.0. If a copy of the MPL was not distributed with this
  3. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. with Files('**'):
  5. BUG_COMPONENT = ('Firefox', 'Developer Tools: Memory')
  6. DIRS += [
  7. 'actions',
  8. 'components',
  9. 'reducers',
  10. ]
  11. DevToolsModules(
  12. 'app.js',
  13. 'constants.js',
  14. 'dominator-tree-lazy-children.js',
  15. 'models.js',
  16. 'panel.js',
  17. 'reducers.js',
  18. 'store.js',
  19. 'telemetry.js',
  20. 'utils.js',
  21. )
  22. BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini']
  23. XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
  24. MOCHITEST_CHROME_MANIFESTS += ['test/chrome/chrome.ini']