2013-02-25 12:47:17 -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/.
|
|
|
|
|
|
|
|
if not CONFIG['LIBXUL_SDK']:
|
|
|
|
include('/toolkit/toolkit.mozbuild')
|
|
|
|
elif CONFIG['ENABLE_TESTS']:
|
2014-10-01 17:14:07 -07:00
|
|
|
DIRS += ['/testing/mochitest']
|
2013-02-25 12:47:17 -08:00
|
|
|
|
|
|
|
if CONFIG['MOZ_EXTENSIONS']:
|
2014-10-01 17:14:07 -07:00
|
|
|
DIRS += ['/extensions']
|
2013-02-25 12:47:17 -08:00
|
|
|
|
2014-10-01 17:14:07 -07:00
|
|
|
DIRS += [
|
2014-10-01 17:14:07 -07:00
|
|
|
'/%s' % CONFIG['MOZ_BRANDING_DIRECTORY'],
|
|
|
|
'/b2g',
|
2014-10-01 17:14:07 -07:00
|
|
|
]
|