2016-07-14 10:16:42 -06:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:24 -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/.
|
|
|
|
|
2017-03-09 05:33:31 -05:00
|
|
|
with Files("moz.build"):
|
2018-03-14 21:44:46 +01:00
|
|
|
BUG_COMPONENT = ("Firefox Build System", "General")
|
2017-03-09 05:33:31 -05:00
|
|
|
|
2014-07-29 08:57:59 +09:00
|
|
|
DIRS += [
|
2013-02-25 12:47:24 -08:00
|
|
|
"common",
|
2014-07-08 07:37:57 +01:00
|
|
|
"crypto",
|
2020-04-09 15:45:37 +00:00
|
|
|
"interfaces",
|
2018-05-10 15:27:21 +02:00
|
|
|
"settings",
|
2013-02-25 12:47:24 -08:00
|
|
|
]
|
|
|
|
|
2020-02-23 23:17:23 +00:00
|
|
|
# The automation dir is only included in nightlies and debug
|
|
|
|
if not CONFIG["RELEASE_OR_BETA"] or CONFIG["MOZ_DEBUG"]:
|
|
|
|
DIRS += ["automation"]
|
|
|
|
|
2016-03-18 14:41:51 -07:00
|
|
|
if CONFIG["MOZ_WIDGET_TOOLKIT"] != "android":
|
2016-12-11 14:37:22 -10:00
|
|
|
DIRS += [
|
|
|
|
"fxaccounts",
|
|
|
|
]
|
2015-08-19 16:44:09 -07:00
|
|
|
|
2013-02-25 12:47:24 -08:00
|
|
|
if CONFIG["MOZ_SERVICES_SYNC"]:
|
2014-07-29 08:57:59 +09:00
|
|
|
DIRS += ["sync"]
|
2021-02-08 01:30:53 +00:00
|
|
|
|
|
|
|
SPHINX_TREES["/services"] = "docs"
|