diff options
author | trav90 <travawine@protonmail.ch> | 2018-05-12 08:19:07 -0500 |
---|---|---|
committer | trav90 <travawine@protonmail.ch> | 2018-05-12 08:19:07 -0500 |
commit | 536562284f1ffe459f432f5810d59dcb6eadb8cc (patch) | |
tree | ab4e66954e9584598238883c884892a2e043ac2c /toolkit/components/moz.build | |
parent | 8e08b8cef22be82dfc6f62bf8531ba3da097ef9b (diff) | |
download | UXP-536562284f1ffe459f432f5810d59dcb6eadb8cc.tar UXP-536562284f1ffe459f432f5810d59dcb6eadb8cc.tar.gz UXP-536562284f1ffe459f432f5810d59dcb6eadb8cc.tar.lz UXP-536562284f1ffe459f432f5810d59dcb6eadb8cc.tar.xz UXP-536562284f1ffe459f432f5810d59dcb6eadb8cc.zip |
Make safebrowsing optional at build time - Part 3: toolkit/
Diffstat (limited to 'toolkit/components/moz.build')
-rw-r--r-- | toolkit/components/moz.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/toolkit/components/moz.build b/toolkit/components/moz.build index e0b412428..c34c1f18d 100644 --- a/toolkit/components/moz.build +++ b/toolkit/components/moz.build @@ -60,7 +60,6 @@ DIRS += [ 'tooltiptext', 'typeaheadfind', 'utils', - 'url-classifier', 'urlformatter', 'viewconfig', 'workerloader', @@ -93,6 +92,9 @@ if 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']: if CONFIG['MOZ_TOOLKIT_SEARCH']: DIRS += ['search'] +if CONFIG['MOZ_URL_CLASSIFIER']: + DIRS += ['url-classifier'] + DIRS += ['captivedetect'] if CONFIG['OS_TARGET'] != 'Android': |