# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- # vim: set filetype=python: # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. with Files('**'): BUG_COMPONENT = ('Toolkit', 'Safe Browsing') XPIDL_SOURCES += [ 'nsIURIClassifier.idl', 'nsIUrlClassifierFeature.idl', ] XPIDL_MODULE = 'url-classifier' DEFINES['GOOGLE_PROTOBUF_NO_RTTI'] = True DEFINES['GOOGLE_PROTOBUF_NO_STATIC_INITIALIZER'] = True UNIFIED_SOURCES += [ 'AsyncUrlChannelClassifier.cpp', 'nsChannelClassifier.cpp', 'UrlClassifierCommon.cpp', 'UrlClassifierFeatureBase.cpp', 'UrlClassifierFeatureFactory.cpp', 'UrlClassifierFeatureLoginReputation.cpp', 'UrlClassifierFeatureResult.cpp', 'UrlClassifierFeatureTrackingAnnotation.cpp', 'UrlClassifierFeatureTrackingProtection.cpp', ] EXPORTS.mozilla.net += [ 'AsyncUrlChannelClassifier.h', 'UrlClassifierCommon.h', 'UrlClassifierFeatureFactory.h', 'UrlClassifierFeatureResult.h', ] LOCAL_INCLUDES += [ '/netwerk/base', '/netwerk/protocol/http', '/toolkit/components/url-classifier', ] FINAL_LIBRARY = 'xul' include('/ipc/chromium/chromium-config.mozbuild')