2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:18 +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/.
|
|
|
|
|
2015-04-30 10:11:37 +03:00
|
|
|
DIRS += [
|
2017-07-25 23:31:22 +03:00
|
|
|
'activity-stream',
|
2016-10-28 23:57:17 +03:00
|
|
|
'aushelper',
|
2017-06-09 21:29:01 +03:00
|
|
|
'clicktoplay-rollout',
|
2016-03-03 17:34:39 +03:00
|
|
|
'e10srollout',
|
2017-05-31 18:40:52 +03:00
|
|
|
'followonsearch',
|
2017-09-14 03:29:49 +03:00
|
|
|
'formautofill',
|
2017-06-30 02:19:51 +03:00
|
|
|
'onboarding',
|
2015-04-30 10:11:37 +03:00
|
|
|
'pdfjs',
|
2015-12-30 02:40:52 +03:00
|
|
|
'pocket',
|
2017-03-10 15:34:54 +03:00
|
|
|
'screenshots',
|
2017-06-08 01:16:48 +03:00
|
|
|
'shield-recipe-client',
|
2016-04-28 02:11:16 +03:00
|
|
|
'webcompat',
|
2015-04-30 10:11:37 +03:00
|
|
|
]
|
2016-06-08 22:08:46 +03:00
|
|
|
|
|
|
|
# Only include the following system add-ons if building Aurora or Nightly
|
2017-01-18 08:47:08 +03:00
|
|
|
if not CONFIG['RELEASE_OR_BETA']:
|
2016-06-08 22:08:46 +03:00
|
|
|
DIRS += [
|
|
|
|
'flyweb',
|
2016-11-15 06:07:09 +03:00
|
|
|
'presentation',
|
2017-06-06 23:45:08 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
# Only include the following system add-ons if building DevEdition or Nightly
|
|
|
|
if CONFIG['MOZ_DEV_EDITION'] or CONFIG['NIGHTLY_BUILD']:
|
|
|
|
DIRS += [
|
2017-04-05 01:40:50 +03:00
|
|
|
'webcompat-reporter',
|
2016-06-08 22:08:46 +03:00
|
|
|
]
|
2016-11-30 02:21:00 +03:00
|
|
|
|
|
|
|
# Only include mortar system add-ons if we locally enable it
|
|
|
|
if CONFIG['MOZ_MORTAR']:
|
|
|
|
DIRS += [
|
|
|
|
'mortar',
|
|
|
|
]
|
2017-07-31 16:13:38 +03:00
|
|
|
|
|
|
|
# Add ASan reporter system add-on if requested
|
|
|
|
if CONFIG['MOZ_ASAN_REPORTER']:
|
|
|
|
DIRS += [
|
|
|
|
'asan-reporter',
|
|
|
|
]
|