2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:17 +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/.
|
|
|
|
|
2017-03-09 10:33:30 +00:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "mozglue")
|
|
|
|
|
2024-01-15 22:24:56 +00:00
|
|
|
if CONFIG["MOZ_LINKER"]:
|
2013-02-25 20:47:17 +00:00
|
|
|
DIRS += ["linker"]
|
|
|
|
|
|
|
|
if CONFIG["MOZ_WIDGET_TOOLKIT"] == "android":
|
|
|
|
DIRS += ["android"]
|
|
|
|
|
2023-06-02 16:17:14 +00:00
|
|
|
if CONFIG["OS_ARCH"] == "Linux" and not CONFIG["FUZZING_SNAPSHOT"]:
|
2023-05-10 16:33:07 +00:00
|
|
|
DIRS += ["interposers"]
|
|
|
|
|
2015-06-05 20:03:11 +00:00
|
|
|
DIRS += [
|
2019-06-06 06:17:30 +00:00
|
|
|
"baseprofiler",
|
2015-06-05 20:03:11 +00:00
|
|
|
"build",
|
|
|
|
"misc",
|
2024-09-10 20:35:56 +00:00
|
|
|
"static",
|
2015-06-05 20:03:11 +00:00
|
|
|
]
|
2013-02-25 20:47:17 +00:00
|
|
|
|
2017-10-05 05:50:01 +00:00
|
|
|
if CONFIG["MOZ_WIDGET_TOOLKIT"]:
|
2015-03-19 09:12:53 +00:00
|
|
|
TEST_DIRS += ["tests"]
|
2024-10-21 12:54:52 +00:00
|
|
|
|
|
|
|
DIRS += ["/third_party/fmt"]
|