mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
736bd7b4ce
--HG-- rename : toolkit/components/url-classifier/nsURLClassifier.manifest => toolkit/components/privatebrowsing/PrivateBrowsing.manifest rename : toolkit/components/url-classifier/PrivateBrowsingTrackingProtectionWhitelist.js => toolkit/components/privatebrowsing/PrivateBrowsingTrackingProtectionWhitelist.js rename : toolkit/components/url-classifier/moz.build => toolkit/components/privatebrowsing/moz.build rename : toolkit/components/url-classifier/nsIPrivateBrowsingTrackingProtectionWhitelist.idl => toolkit/components/privatebrowsing/nsIPrivateBrowsingTrackingProtectionWhitelist.idl
17 lines
530 B
Python
17 lines
530 B
Python
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
XPIDL_SOURCES += [
|
|
'nsIPrivateBrowsingTrackingProtectionWhitelist.idl',
|
|
]
|
|
|
|
XPIDL_MODULE = 'privatebrowsing'
|
|
|
|
EXTRA_COMPONENTS += [
|
|
'PrivateBrowsing.manifest',
|
|
'PrivateBrowsingTrackingProtectionWhitelist.js',
|
|
]
|