components.conf (1317B)
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 Classes = [] 8 9 if buildconfig.substs['MOZ_DEVTOOLS'] == 'all': 10 Classes += [ 11 { 12 'cid': '{9e9a9283-0ce9-4e4a-8f1c-ba129a032c32}', 13 'contract_ids': ['@mozilla.org/devtools/startup-clh;1'], 14 'esModule': 'resource:///modules/DevToolsStartup.sys.mjs', 15 'constructor': 'DevToolsStartup', 16 'categories': {'command-line-handler': 'm-devtools'}, 17 }, 18 { 19 'cid': '{1060afaf-dc9e-43da-8646-23a2faf48493}', 20 'contract_ids': ['@mozilla.org/network/protocol/about;1?what=debugging'], 21 'esModule': 'resource:///modules/AboutDebuggingRegistration.sys.mjs', 22 'constructor': 'AboutDebugging', 23 }, 24 { 25 'cid': '{11342911-3135-45a8-8d71-737a2b0ad469}', 26 'contract_ids': ['@mozilla.org/network/protocol/about;1?what=devtools-toolbox'], 27 'esModule': 'resource:///modules/AboutDevToolsToolboxRegistration.sys.mjs', 28 'constructor': 'AboutDevtoolsToolbox', 29 }, 30 ]