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:22 +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/.
|
|
|
|
|
|
|
|
DIRS += [
|
|
|
|
'chromium',
|
|
|
|
'glue',
|
|
|
|
'ipdl',
|
|
|
|
'testshell',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_B2G_RIL']:
|
|
|
|
DIRS += ['ril']
|
|
|
|
|
2014-11-03 12:03:49 +00:00
|
|
|
if CONFIG['MOZ_B2G_BT_BLUEDROID']:
|
|
|
|
DIRS += ['bluetooth']
|
|
|
|
|
2013-10-23 06:12:24 +00:00
|
|
|
if CONFIG['MOZ_B2G_BT_BLUEZ']:
|
2013-02-25 20:47:22 +00:00
|
|
|
DIRS += ['dbus']
|
|
|
|
|
2013-11-01 06:52:59 +00: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 16:51:52 +00:00
|
|
|
DIRS += ['unixfd', 'unixsocket']
|
2013-02-25 20:47:22 +00:00
|
|
|
|
2013-03-19 17:22:48 +00:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
2014-02-26 16:51:52 +00:00
|
|
|
DIRS += ['keystore', 'netd']
|
2013-03-19 17:22:48 +00:00
|
|
|
|
2014-07-30 07:24:00 +00:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
|
|
|
DIRS += ['contentproc']
|
|
|
|
|
2014-07-28 23:55:55 +00:00
|
|
|
DIRS += ['app']
|