aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--browser/common/source_files/mozconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/browser/common/source_files/mozconfig b/browser/common/source_files/mozconfig
index 4c1a673..4d5eb63 100644
--- a/browser/common/source_files/mozconfig
+++ b/browser/common/source_files/mozconfig
@@ -2,6 +2,10 @@
# This is for the desktop version of librewolf
ac_add_options --enable-application=browser
+# This supposedly speeds up compilation (We test through dogfooding anyway)
+ac_add_options --disable-tests
+ac_add_options --disable-debug
+
# Folder to output the build files:
mk_add_options MOZ_OBJDIR=./obj_BUILD_OUTPUT
bgstack15