moz.build (727B)
1 # vim: set filetype=python: 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 6 with Files("**"): 7 BUG_COMPONENT = ("DevTools", "Memory") 8 9 DIRS += [ 10 "actions", 11 "components", 12 "reducers", 13 ] 14 15 DevToolsModules( 16 "app.js", 17 "constants.js", 18 "dominator-tree-lazy-children.js", 19 "initializer.js", 20 "models.js", 21 "panel.js", 22 "reducers.js", 23 "store.js", 24 "utils.js", 25 ) 26 27 BROWSER_CHROME_MANIFESTS += ["test/browser/browser.toml"] 28 XPCSHELL_TESTS_MANIFESTS += ["test/xpcshell/xpcshell.toml"] 29 MOCHITEST_CHROME_MANIFESTS += ["test/chrome/chrome.toml"]