2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2015-06-04 01:34:44 +03:00
|
|
|
# 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/.
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "WebExtensions: Untriaged")
|
|
|
|
|
2015-06-04 01:34:44 +03:00
|
|
|
JAR_MANIFESTS += ['jar.mn']
|
2015-08-28 02:29:08 +03:00
|
|
|
|
2016-07-22 22:44:40 +03:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'extensions-browser.manifest',
|
|
|
|
]
|
|
|
|
|
2017-01-29 02:00:15 +03:00
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'ExtensionPopups.jsm',
|
2017-07-22 00:14:17 +03:00
|
|
|
'ParseBreakpadSymbols-worker.js',
|
2017-07-22 00:13:37 +03:00
|
|
|
'ParseCppFiltSymbols-worker.js',
|
2017-07-22 00:14:17 +03:00
|
|
|
'ParseNMSymbols-worker.js',
|
2017-04-11 19:03:40 +03:00
|
|
|
'ParseSymbols.jsm',
|
2017-01-29 02:00:15 +03:00
|
|
|
]
|
|
|
|
|
2015-11-20 05:52:14 +03:00
|
|
|
DIRS += ['schemas']
|
|
|
|
|
2016-11-18 01:00:32 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += [
|
|
|
|
'test/browser/browser-remote.ini',
|
|
|
|
'test/browser/browser.ini',
|
|
|
|
]
|
|
|
|
|
2016-08-21 08:21:45 +03:00
|
|
|
MOCHITEST_MANIFESTS += ['test/mochitest/mochitest.ini']
|
2017-05-30 00:10:27 +03:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
|
|
'test/xpcshell/xpcshell-remote.ini',
|
|
|
|
'test/xpcshell/xpcshell.ini',
|
|
|
|
]
|