diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-17 14:06:01 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-17 14:06:01 -0500 |
commit | f28984b853667da9f9841e9fa090162e4a3af499 (patch) | |
tree | 8f0bff3a8de032b489bea081d270439a1351fac0 /toolkit/moz.build | |
parent | 8a119434ac94d18b888550bea1b125aba1ad446e (diff) | |
download | UXP-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/moz.build')
-rw-r--r-- | toolkit/moz.build | 4 |
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: |