2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; 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',
|
|
|
|
]
|
|
|
|
|
2016-10-29 00:25:23 +03:00
|
|
|
if CONFIG['MOZ_ENABLE_DBUS']:
|
2013-02-26 00:47:22 +04:00
|
|
|
DIRS += ['dbus']
|
|
|
|
|
2016-11-08 00:16:07 +03:00
|
|
|
if 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':
|
2015-06-15 15:44:03 +03:00
|
|
|
DIRS += ['hal', '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']
|
|
|
|
|
2016-06-03 21:29:21 +03:00
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT':
|
|
|
|
DIRS += ['mscom']
|
|
|
|
|
2014-07-29 03:55:55 +04:00
|
|
|
DIRS += ['app']
|