mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
135 lines
2.2 KiB
Python
135 lines
2.2 KiB
Python
# -*- Mode: python; 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/.
|
|
|
|
JAR_MANIFESTS += ['jar.mn']
|
|
|
|
interfaces = [
|
|
'base',
|
|
'canvas',
|
|
'core',
|
|
'html',
|
|
'events',
|
|
'settings',
|
|
'stylesheets',
|
|
'sidebar',
|
|
'css',
|
|
'traversal',
|
|
'range',
|
|
'xbl',
|
|
'xpath',
|
|
'xul',
|
|
'security',
|
|
'storage',
|
|
'json',
|
|
'offline',
|
|
'geolocation',
|
|
'notification',
|
|
'permission',
|
|
'svg',
|
|
'smil',
|
|
'apps',
|
|
'push',
|
|
]
|
|
|
|
DIRS += ['interfaces/' + i for i in interfaces]
|
|
|
|
DIRS += [
|
|
'animation',
|
|
'apps',
|
|
'base',
|
|
'archivereader',
|
|
'bindings',
|
|
'battery',
|
|
'browser-element',
|
|
'cache',
|
|
'canvas',
|
|
'crypto',
|
|
'devicestorage',
|
|
'encoding',
|
|
'events',
|
|
'fetch',
|
|
'filehandle',
|
|
'filesystem',
|
|
'flyweb',
|
|
'gamepad',
|
|
'geolocation',
|
|
'grid',
|
|
'html',
|
|
'inputport',
|
|
'json',
|
|
'jsurl',
|
|
'asmjscache',
|
|
'mathml',
|
|
'media',
|
|
'notification',
|
|
'offline',
|
|
'power',
|
|
'push',
|
|
'quota',
|
|
'security',
|
|
'settings',
|
|
'storage',
|
|
'svg',
|
|
'time',
|
|
'locales',
|
|
'network',
|
|
'permission',
|
|
'plugins/base',
|
|
'plugins/ipc',
|
|
'indexedDB',
|
|
'system',
|
|
'ipc',
|
|
'workers',
|
|
'audiochannel',
|
|
'broadcastchannel',
|
|
'messagechannel',
|
|
'promise',
|
|
'smil',
|
|
'url',
|
|
'inputmethod',
|
|
'webidl',
|
|
'xbl',
|
|
'xml',
|
|
'xslt',
|
|
'xul',
|
|
'manifest',
|
|
'vr',
|
|
'u2f',
|
|
'console',
|
|
'performance',
|
|
'xhr',
|
|
'worklet',
|
|
]
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
DIRS += ['plugins/ipc/hangui']
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
DIRS += [
|
|
'speakermanager',
|
|
'tethering',
|
|
'wifi',
|
|
]
|
|
|
|
if CONFIG['MOZ_SECUREELEMENT']:
|
|
DIRS += ['secureelement']
|
|
|
|
if CONFIG['MOZ_B2G']:
|
|
DIRS += [
|
|
'downloads',
|
|
]
|
|
|
|
DIRS += ['presentation']
|
|
|
|
TEST_DIRS += [
|
|
'tests',
|
|
'imptests',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3', 'cocoa', 'windows', 'android'):
|
|
TEST_DIRS += ['plugins/test']
|
|
|