2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:22 +04: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/.
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
'chromium',
|
|
|
|
'glue',
|
|
|
|
'ipdl',
|
|
|
|
'testshell',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_B2G_RIL']:
|
|
|
|
DIRS += ['ril']
|
|
|
|
|
2014-11-03 15:03:49 +03:00
|
|
|
if CONFIG['MOZ_B2G_BT_BLUEDROID']:
|
|
|
|
DIRS += ['bluetooth']
|
|
|
|
|
2013-10-23 10:12:24 +04:00
|
|
|
if CONFIG['MOZ_B2G_BT_BLUEZ']:
|
2013-02-26 00:47:22 +04:00
|
|
|
DIRS += ['dbus']
|
|
|
|
|
2013-11-01 10:52:59 +04:00
|
|
|
if CONFIG['MOZ_NFC']:
|
|
|
|
DIRS += ['nfc']
|
|
|
|
|
|
|
|
if CONFIG['MOZ_B2G_RIL'] or CONFIG['MOZ_B2G_BT'] or CONFIG['MOZ_NFC'] or CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
2014-02-26 20:51:52 +04:00
|
|
|
DIRS += ['unixfd', 'unixsocket']
|
2013-02-26 00:47:22 +04:00
|
|
|
|
2013-03-19 21:22:48 +04:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
2014-02-26 20:51:52 +04:00
|
|
|
DIRS += ['keystore', 'netd']
|
2013-03-19 21:22:48 +04:00
|
|
|
|
2014-07-30 11:24:00 +04:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
|
|
|
DIRS += ['contentproc']
|
|
|
|
|
2014-07-29 03:55:55 +04:00
|
|
|
DIRS += ['app']
|