mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
0e53b20b57
--HG-- extra : rebase_source : cee7df4bb29a70ab1bbc5c9bcaec728a9c727bd2
24 lines
668 B
Python
24 lines
668 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/.
|
|
|
|
# Disable the tests on Android for now (bug 927869)
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
|
TEST_DIRS += ['tests']
|
|
|
|
EXTRA_COMPONENTS += [
|
|
'ContactManager.js',
|
|
'ContactManager.manifest',
|
|
]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'ContactDB.jsm',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
|
EXTRA_JS_MODULES += [
|
|
'ContactService.jsm'
|
|
]
|