gecko-dev/browser/components/moz.build
Michael Kaply 950282d83b Bug 436564 - Add unit tests for distribution.js; r=mixedpuppy
MozReview-Commit-ID: 47aRIjly0YZ

--HG--
rename : browser/components/test/.eslintrc => browser/components/tests/browser/.eslintrc
rename : browser/components/test/browser.ini => browser/components/tests/browser/browser.ini
rename : browser/components/test/browser_bug538331.js => browser/components/tests/browser/browser_bug538331.js
extra : rebase_source : fc14d5b2b9806936ca73262cfe1660390d5af7d3
extra : amend_source : 3e9b0fdd86550782b800da6dcf02236bbde56c2d
2016-02-25 12:40:39 -06:00

67 lines
1.3 KiB
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/.
DIRS += [
'about',
'contextualidentity',
'customizableui',
'dirprovider',
'downloads',
'extensions',
'feeds',
'migration',
'newtab',
'places',
'preferences',
'privatebrowsing',
'search',
'sessionstore',
'shell',
'selfsupport',
'syncedtabs',
'uitour',
'translation',
]
DIRS += ['build']
XPIDL_SOURCES += [
'nsIBrowserGlue.idl',
'nsIBrowserHandler.idl',
]
XPIDL_MODULE = 'browsercompsbase'
EXTRA_PP_COMPONENTS += [
'BrowserComponents.manifest',
]
EXTRA_COMPONENTS += [
'nsBrowserContentHandler.js',
'nsBrowserGlue.js',
]
EXTRA_JS_MODULES += [
'distribution.js',
]
BROWSER_CHROME_MANIFESTS += [
'tests/browser/browser.ini'
]
XPCSHELL_TESTS_MANIFESTS += [
'tests/unit/xpcshell.ini'
]
if CONFIG['MOZ_SAFE_BROWSING']:
BROWSER_CHROME_MANIFESTS += ['safebrowsing/content/test/browser.ini']
with Files('safebrowsing/*'):
BUG_COMPONENT = ('Toolkit', 'Phishing Protection')
with Files('controlcenter/**'):
BUG_COMPONENT = ('Firefox', 'General')