2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:20 +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/.
|
|
|
|
|
2013-10-18 06:11:11 +00:00
|
|
|
# Disable the tests on Android for now (bug 927869)
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
2014-07-26 06:17:24 +00:00
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest.ini']
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/chrome.ini']
|
2013-06-10 15:19:28 +00:00
|
|
|
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'ContactManager.js',
|
|
|
|
'ContactManager.manifest',
|
|
|
|
]
|
2013-06-10 16:08:47 +00:00
|
|
|
|
|
|
|
EXTRA_JS_MODULES += [
|
2013-11-21 19:57:06 +00:00
|
|
|
'fallback/ContactDB.jsm',
|
2013-06-10 16:08:47 +00:00
|
|
|
]
|
2013-07-18 22:29:00 +00:00
|
|
|
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
|
|
|
EXTRA_JS_MODULES += [
|
2013-11-21 19:57:06 +00:00
|
|
|
'fallback/ContactService.jsm'
|
2013-07-18 22:29:00 +00:00
|
|
|
]
|