summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2022-03-25 00:08:53 -0500
committerMatt A. Tobin <email@mattatobin.com>2022-03-25 00:08:53 -0500
commitfd5099e2cdd93490fd63ca3b2d0ed38a6e1395a6 (patch)
tree8558f7be2e5514d5a3cb98f715768018a6e54d92 /build
parenteae7341dcb8b7ef3f22fd9e14fa565776d162e46 (diff)
downloadaura-central-fd5099e2cdd93490fd63ca3b2d0ed38a6e1395a6.tar.gz
Remove Firefox Devtools as they run like shit.
If devtools/ exists by someone adding it back or cloning an independent repo into the tree mach_bootstrap will detect it like I did for the add-ons sdk
Diffstat (limited to 'build')
-rw-r--r--build/mach_bootstrap.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/build/mach_bootstrap.py b/build/mach_bootstrap.py
index d1e0ba308..e8f4b7c05 100644
--- a/build/mach_bootstrap.py
+++ b/build/mach_bootstrap.py
@@ -84,7 +84,6 @@ SEARCH_PATHS = [
# Individual files providing mach commands.
MACH_MODULES = [
'build/valgrind/mach_commands.py',
- 'devtools/shared/css/generated/mach_commands.py',
'dom/bindings/mach_commands.py',
'dom/media/test/external/mach_commands.py',
'layout/tools/reftest/mach_commands.py',
@@ -106,7 +105,10 @@ MACH_MODULES = [
]
if os.path.exists('addon-sdk/mach_commands.py'):
- MACH_MODULES += [ 'addon-sdk/mach_commands.py' ]
+ MACH_MODULES += ['addon-sdk/mach_commands.py']
+
+if os.path.exists('devtools/shared/css/generated/mach_commands.py'):
+ MACH_MODULES += ['devtools/shared/css/generated/mach_commands.py']
CATEGORIES = {
'build': {