2013-04-01 11:36:59 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:22 -08: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']
|
|
|
|
|
2013-10-22 23:12:24 -07:00
|
|
|
if CONFIG['MOZ_B2G_BT_BLUEZ']:
|
2013-02-25 12:47:22 -08:00
|
|
|
DIRS += ['dbus']
|
|
|
|
|
2013-10-31 23:52:59 -07: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 08:51:52 -08:00
|
|
|
DIRS += ['unixfd', 'unixsocket']
|
2013-02-25 12:47:22 -08:00
|
|
|
|
2013-03-19 10:22:48 -07:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
2014-02-26 08:51:52 -08:00
|
|
|
DIRS += ['keystore', 'netd']
|
2013-03-19 10:22:48 -07:00
|
|
|
|
2013-02-25 12:47:22 -08:00
|
|
|
TOOL_DIRS += ['app']
|