summaryrefslogtreecommitdiffstats
path: root/toolkit
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-17 14:06:01 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-17 14:06:01 -0500
commitf28984b853667da9f9841e9fa090162e4a3af499 (patch)
tree8f0bff3a8de032b489bea081d270439a1351fac0 /toolkit
parent8a119434ac94d18b888550bea1b125aba1ad446e (diff)
downloadUXP-f28984b853667da9f9841e9fa090162e4a3af499.tar
UXP-f28984b853667da9f9841e9fa090162e4a3af499.tar.gz
UXP-f28984b853667da9f9841e9fa090162e4a3af499.tar.lz
UXP-f28984b853667da9f9841e9fa090162e4a3af499.tar.xz
UXP-f28984b853667da9f9841e9fa090162e4a3af499.zip
Add a configure option to disable including jetpack
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/moz.build4
1 files changed, 3 insertions, 1 deletions
diff --git a/toolkit/moz.build b/toolkit/moz.build
index ea7cc390d..9444a5179 100644
--- a/toolkit/moz.build
+++ b/toolkit/moz.build
@@ -9,7 +9,6 @@ DIRS += [
'content',
'forgetaboutsite',
'identity',
- 'jetpack',
'locales',
'modules',
'mozapps/downloads',
@@ -21,6 +20,9 @@ DIRS += [
'themes',
]
+if CONFIG['MOZ_JETPACK']:
+ DIRS += ['jetpack']
+
if CONFIG['MOZ_WEBEXTENSIONS']:
DIRS += ['mozapps/webextensions']
else: