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