2013-02-25 20:47:18 +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/.
|
|
|
|
|
|
|
|
if not CONFIG['LIBXUL_SDK']:
|
|
|
|
include('/toolkit/toolkit.mozbuild')
|
|
|
|
|
|
|
|
if CONFIG['MOZ_EXTENSIONS']:
|
2014-10-02 00:14:07 +00:00
|
|
|
DIRS += ['/extensions']
|
2013-02-25 20:47:18 +00:00
|
|
|
|
2014-10-02 00:14:07 +00:00
|
|
|
DIRS += ['/%s' % CONFIG['MOZ_BRANDING_DIRECTORY']]
|
2013-02-25 20:47:18 +00:00
|
|
|
|
|
|
|
if CONFIG['MOZ_WEBAPP_RUNTIME']:
|
2014-10-02 00:14:07 +00:00
|
|
|
DIRS += ['/webapprt']
|
2013-02-25 20:47:18 +00:00
|
|
|
|
2014-10-02 00:14:07 +00:00
|
|
|
# Never add dirs after browser because they apparently won't get
|
2013-02-25 20:47:18 +00:00
|
|
|
# packaged properly on Mac.
|
2014-10-02 00:14:07 +00:00
|
|
|
DIRS += ['/browser']
|
2013-02-25 20:47:18 +00:00
|
|
|
|