mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
d544bf248c
Backed out changeset e72a0297d488 (bug 843452) Backed out changeset 73f62ce4190f (bug 843452) Backed out changeset 6d4a49ebd9fc (bug 843452) Backed out changeset ac93e396669f (bug 843452) Backed out changeset cf4fc721821e (bug 843452) Backed out changeset 9a94ea71d232 (bug 843452) Backed out changeset b95ff097374d (bug 843452) Backed out changeset 8d6428a93500 (bug 843452) Backed out changeset e31b86ef0e80 (bug 843452) Backed out changeset bd4efde535cd (bug 843452) Backed out changeset 02bbcd8ac571 (bug 843452) Backed out changeset f7f41bf82b22 (bug 843452) Backed out changeset 20f42764cd38 (bug 843452) Backed out changeset 82f8670f5c17 (bug 843452) Backed out changeset 52f25f1278e3 (bug 843452) Backed out changeset 181337820a7c (bug 843452) Backed out changeset 9bd12641af03 (bug 843452) --HG-- rename : dom/mobileconnection/interfaces/nsIMobileConnectionService.idl => dom/mobileconnection/interfaces/nsIMobileConnectionProvider.idl
140 lines
2.4 KiB
Python
140 lines
2.4 KiB
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/.
|
|
|
|
interfaces = [
|
|
'base',
|
|
'canvas',
|
|
'core',
|
|
'html',
|
|
'events',
|
|
'devicestorage',
|
|
'settings',
|
|
'stylesheets',
|
|
'sidebar',
|
|
'css',
|
|
'traversal',
|
|
'range',
|
|
'xbl',
|
|
'xpath',
|
|
'xul',
|
|
'storage',
|
|
'json',
|
|
'offline',
|
|
'geolocation',
|
|
'notification',
|
|
'permission',
|
|
'svg',
|
|
'smil',
|
|
'apps',
|
|
'gamepad',
|
|
]
|
|
|
|
DIRS += ['interfaces/' + i for i in interfaces]
|
|
|
|
DIRS += [
|
|
'animation',
|
|
'apps',
|
|
'base',
|
|
'activities',
|
|
'archivereader',
|
|
'bindings',
|
|
'battery',
|
|
'browser-element',
|
|
'canvas',
|
|
'contacts',
|
|
'crypto',
|
|
'phonenumberutils',
|
|
'alarm',
|
|
'datastore',
|
|
'devicestorage',
|
|
'encoding',
|
|
'events',
|
|
'fetch',
|
|
'filehandle',
|
|
'filesystem',
|
|
'fmradio',
|
|
'asmjscache',
|
|
'mathml',
|
|
'media',
|
|
'messages',
|
|
'power',
|
|
'push',
|
|
'quota',
|
|
'settings',
|
|
'mobilemessage',
|
|
'src',
|
|
'time',
|
|
'locales',
|
|
'network',
|
|
'permission',
|
|
'plugins/base',
|
|
'plugins/ipc',
|
|
'indexedDB',
|
|
'system',
|
|
'ipc',
|
|
'identity',
|
|
'workers',
|
|
'camera',
|
|
'audiochannel',
|
|
'promise',
|
|
'smil',
|
|
'telephony',
|
|
'inputmethod',
|
|
'webidl',
|
|
'xbl',
|
|
'xml',
|
|
'xslt',
|
|
'resourcestats',
|
|
]
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
DIRS += ['plugins/ipc/hangui']
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
DIRS += [
|
|
'speakermanager',
|
|
'tethering',
|
|
'wifi',
|
|
]
|
|
|
|
if CONFIG['MOZ_B2G_RIL']:
|
|
DIRS += [
|
|
'icc',
|
|
'cellbroadcast',
|
|
'mobileconnection',
|
|
'voicemail',
|
|
'wappush',
|
|
]
|
|
|
|
if CONFIG['MOZ_PAY']:
|
|
DIRS += ['payment']
|
|
|
|
if CONFIG['MOZ_GAMEPAD']:
|
|
DIRS += ['gamepad']
|
|
|
|
if CONFIG['MOZ_NFC']:
|
|
DIRS += ['nfc']
|
|
|
|
if CONFIG['MOZ_B2G']:
|
|
DIRS += [
|
|
'downloads',
|
|
'mobileid'
|
|
]
|
|
|
|
if CONFIG['MOZ_B2G_BT_API_V2']:
|
|
DIRS += ['bluetooth2']
|
|
else:
|
|
DIRS += ['bluetooth']
|
|
|
|
TEST_DIRS += [
|
|
'tests',
|
|
'imptests',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'cocoa', 'windows', 'android', 'qt'):
|
|
TEST_DIRS += ['plugins/test']
|
|
|