Bug 1758813 [wpt PR 33142] - Implement RP sign out, a=testonly
[gecko.git] / xpcom / moz.build
blob70fc08c9ad347a4df7f6a6eef4b3e3d94ee864e3
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 with Files("**"):
8     BUG_COMPONENT = ("Core", "XPCOM")
10 DIRS += [
11     "idl-parser/xpidl",
12     "geckoprocesstypes_generator/geckoprocesstypes",
15 DIRS += [
16     "string",
17     "glue",
18     "base",
19     "ds",
20     "io",
21     "components",
22     "threads",
23     "reflect",
24     "system",
25     "../chrome",
26     "build",
29 if CONFIG["OS_ARCH"] == "WINNT" and CONFIG["MOZ_DEBUG"]:
30     DIRS += ["windbgdlg"]
32 TEST_DIRS += [
33     "rust/gtest",
34     "tests",
37 #  Can't build internal xptcall tests that use symbols which are not exported.
38 # TEST_DIRS += [
39 #    'reflect/xptcall/tests,
40 # ]
42 CONFIGURE_DEFINE_FILES += [
43     "xpcom-config.h",
46 EXPORTS += [
47     "!xpcom-config.h",
50 SPHINX_TREES["/xpcom"] = "docs"
52 with Files("docs/**"):
53     SCHEDULES.exclusive = ["docs"]