gecko-dev/browser/components/about/moz.build
Erica Wright a45472c826 Bug 1549831 - Set up RPM Handler for about:protections. r=nhnt11,johannh
RPM set up with about:protections for future use

Differential Revision: https://phabricator.services.mozilla.com/D32348

--HG--
extra : moz-landing-system : lando
2019-05-24 16:01:09 +00:00

35 lines
765 B
Python

# -*- 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 = ("Firefox", "General")
EXPORTS.mozilla.browser += [
'AboutRedirector.h',
]
XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
SOURCES += [
'AboutRedirector.cpp',
]
XPCOM_MANIFESTS += [
'components.conf',
]
EXTRA_JS_MODULES.aboutpages = [
'AboutNetErrorHandler.jsm',
'AboutPrivateBrowsingHandler.jsm',
'AboutProtectionsHandler.jsm',
]
FINAL_LIBRARY = 'browsercomps'
LOCAL_INCLUDES += [
'../build',
]