mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
268f43e4f7
--HG-- extra : rebase_source : 4f3e45ee392385451f979b084a1d3afab215b925
29 lines
711 B
Python
29 lines
711 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/.
|
|
|
|
BROWSER_CHROME_MANIFESTS += ['tests/browser/browser.ini']
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
'tests/xpcshell/xpcshell.ini',
|
|
]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'NewTabPrefsProvider.jsm',
|
|
'NewTabURL.jsm',
|
|
'PlacesProvider.jsm'
|
|
]
|
|
|
|
XPIDL_SOURCES += [
|
|
'nsIAboutNewTabService.idl',
|
|
]
|
|
|
|
XPIDL_MODULE = 'browser-newtab'
|
|
|
|
EXTRA_COMPONENTS += [
|
|
'aboutNewTabService.js',
|
|
'NewTabComponents.manifest',
|
|
]
|