2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 21:19:09 +00: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/.
|
|
|
|
|
2014-02-06 21:00:20 +00:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini']
|
2013-06-10 15:19:28 +00:00
|
|
|
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'nsSearchSuggestions.js',
|
|
|
|
]
|
2013-06-14 18:07:19 +00:00
|
|
|
|
2015-02-13 18:50:38 +00:00
|
|
|
if CONFIG['MOZ_BUILD_APP'] in ['browser', 'mobile/android', 'xulrunner']:
|
|
|
|
DEFINES['HAVE_SIDEBAR'] = True
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'nsSidebar.js',
|
|
|
|
]
|
|
|
|
|
2014-07-29 18:28:35 +00:00
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'SearchSuggestionController.jsm',
|
|
|
|
]
|
|
|
|
|
2013-06-14 18:07:19 +00:00
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'nsSearchService.js',
|
2015-02-13 18:50:38 +00:00
|
|
|
'toolkitsearch.manifest',
|
2013-06-14 18:07:19 +00:00
|
|
|
]
|
2013-11-27 13:55:07 +00:00
|
|
|
|
2014-07-31 14:57:02 +00:00
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'SearchStaticData.jsm',
|
|
|
|
]
|
|
|
|
|
2013-11-27 13:55:07 +00:00
|
|
|
DEFINES['MOZ_DISTRIBUTION_ID'] = CONFIG['MOZ_DISTRIBUTION_ID']
|
2014-07-25 18:34:23 +00:00
|
|
|
|
|
|
|
if CONFIG['MOZ_BUILD_APP'] == 'mobile/android':
|
|
|
|
DEFINES['MOZ_FENNEC'] = True
|
2015-03-15 18:36:24 +00:00
|
|
|
|
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Firefox', 'Search')
|