2013-02-28 18:16:49 +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/.
|
|
|
|
|
2020-12-15 09:42:03 +03:00
|
|
|
# Note that paths in this file are relative to the top directory (m-c)
|
2013-02-28 18:16:49 +04:00
|
|
|
|
2020-11-06 22:03:27 +03:00
|
|
|
GENERATED_FILES[
|
|
|
|
"source-repo.h"
|
|
|
|
].script = "comm/build/source_repos.py:source_repo_header"
|
2019-08-27 04:31:11 +03:00
|
|
|
|
2020-12-15 09:42:03 +03:00
|
|
|
include("/%s/toolkit/toolkit.mozbuild" % CONFIG["mozreltopsrcdir"])
|
2013-02-28 18:16:49 +04:00
|
|
|
|
2020-12-15 09:42:03 +03:00
|
|
|
include("/%s/mailnews/mailnews.mozbuild" % CONFIG["commreltopsrcdir"])
|
2017-02-26 18:45:39 +03:00
|
|
|
|
2020-12-15 09:42:03 +03:00
|
|
|
DIRS += ["/%s/mail/components" % CONFIG["commreltopsrcdir"]]
|
2013-02-28 18:16:49 +04:00
|
|
|
|
2020-11-06 22:03:27 +03:00
|
|
|
if CONFIG["MOZ_EXTENSIONS"]:
|
|
|
|
DIRS += ["/%s/extensions" % CONFIG["mozreltopsrcdir"]]
|
2013-02-28 18:16:49 +04:00
|
|
|
|
2020-12-15 09:42:03 +03:00
|
|
|
# Never add dirs after /comm/mail because they apparently won't get
|
|
|
|
# packaged properly on Mac.
|
2014-10-03 00:56:44 +04:00
|
|
|
DIRS += [
|
2020-11-06 22:03:27 +03:00
|
|
|
"/%s" % CONFIG["MOZ_BRANDING_DIRECTORY"],
|
|
|
|
"/%s/calendar" % CONFIG["commreltopsrcdir"],
|
|
|
|
"/%s/chat" % CONFIG["commreltopsrcdir"],
|
|
|
|
"/%s/mail" % CONFIG["commreltopsrcdir"],
|
2014-10-03 00:56:44 +04:00
|
|
|
]
|