moz.build (1208B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 DIRS += [ 8 "actions", 9 "components", 10 "enhancers", 11 "middleware", 12 "reducers", 13 "selectors", 14 "utils", 15 ] 16 DevToolsModules( 17 "browser-console-manager.js", 18 "browser-console.js", 19 "constants.js", 20 "panel.js", 21 "service-container.js", 22 "store.js", 23 "types.js", 24 "utils.js", 25 "webconsole-ui.js", 26 "webconsole-wrapper.js", 27 "webconsole.js", 28 ) 29 30 BROWSER_CHROME_MANIFESTS += [ 31 "test/browser/_browser_console.toml", 32 "test/browser/_jsterm.toml", 33 "test/browser/_webconsole.toml", 34 "test/browser/_webconsole_network.toml", 35 "test/browser/_webconsole_object_inspector.toml", 36 "test/browser/_webconsole_warning_group.toml", 37 "test/node/fixtures/stubs/stubs.toml", 38 ] 39 40 MOCHITEST_CHROME_MANIFESTS += [ 41 "test/chrome/chrome.toml", 42 ] 43 44 XPCSHELL_TESTS_MANIFESTS += ["test/xpcshell/xpcshell.toml"] 45 46 with Files("**"): 47 BUG_COMPONENT = ("DevTools", "Console")