moz.build (1455B)
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 BROWSER_CHROME_MANIFESTS += [ 8 "test/browser-telemetry-startup.toml", 9 "test/browser.toml", 10 "test/browser_destroying_iframes.toml", 11 "test/metrics/browser_metrics.toml", 12 "test/metrics/browser_metrics_debugger.toml", 13 "test/metrics/browser_metrics_inspector.toml", 14 "test/metrics/browser_metrics_netmonitor.toml", 15 "test/metrics/browser_metrics_webconsole.toml", 16 ] 17 XPCSHELL_TESTS_MANIFESTS += ["test/xpcshell/xpcshell.toml"] 18 19 DIRS += [ 20 "actions", 21 "browser-toolbox", 22 "components", 23 "reducers", 24 "test/allocations", 25 ] 26 27 DevToolsModules( 28 "browser-menus.js", 29 "commands-from-url.js", 30 "devtools-browser.js", 31 "devtools.js", 32 "local-tab-commands-factory.js", 33 "menu-item.js", 34 "menu.js", 35 "selection.js", 36 "source-map-url-service.js", 37 "store-provider.js", 38 "store.js", 39 "toolbox-context-menu.js", 40 "toolbox-host-manager.js", 41 "toolbox-hosts.js", 42 "toolbox-options.js", 43 "toolbox-tabs-order-manager.js", 44 "toolbox-window.js", 45 "toolbox.js", 46 ) 47 48 with Files("**"): 49 BUG_COMPONENT = ("DevTools", "Framework") 50 51 SPHINX_TREES["/devtools/tests/memory"] = "test/allocations/docs"