diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-05-16 17:11:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-16 17:11:17 +0200 |
commit | 9b0d2d006578efbd75a8666727be5e69ae0baf1e (patch) | |
tree | 84bd9a32203822c02fc8056eb55f0a68315a7afc /toolkit/components/moz.build | |
parent | 95f98caae3a63ad791fe942b78abaf167ad7654c (diff) | |
parent | dacb0e63b4424e212a1567651d058009f2c6f413 (diff) | |
download | aura-central-9b0d2d006578efbd75a8666727be5e69ae0baf1e.tar.gz |
Merge pull request %368 from trav90/safebrowsing-work
Make safebrowsing optional at build time
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 8c065dc73..c11f62792 100644 --- a/toolkit/components/moz.build +++ b/toolkit/components/moz.build @@ -61,7 +61,6 @@ DIRS += [ 'tooltiptext', 'typeaheadfind', 'utils', - 'url-classifier', 'urlformatter', 'viewconfig', 'workerloader', @@ -94,6 +93,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': |