2016-07-14 10:16:42 -06:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:21 -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-01-23 11:10:05 -05:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Graphics")
|
2019-07-31 13:43:59 +00:00
|
|
|
SCHEDULES.inclusive += ["android-hw-gfx"]
|
2019-03-21 20:40:57 +00:00
|
|
|
with Files("wr/**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Graphics: WebRender")
|
2017-01-23 11:10:05 -05:00
|
|
|
|
2013-02-25 12:47:21 -08:00
|
|
|
DIRS += [
|
2021-07-29 23:38:30 +00:00
|
|
|
"cairo",
|
2013-02-25 12:47:21 -08:00
|
|
|
"2d",
|
|
|
|
"ycbcr",
|
|
|
|
"angle",
|
|
|
|
"src",
|
|
|
|
"qcms",
|
|
|
|
"gl",
|
|
|
|
"layers",
|
|
|
|
"graphite2/src",
|
|
|
|
"harfbuzz/src",
|
|
|
|
"ots/src",
|
|
|
|
"thebes",
|
|
|
|
"ipc",
|
2015-04-01 16:02:20 -04:00
|
|
|
"vr",
|
2016-04-28 21:52:54 -07:00
|
|
|
"config",
|
2017-01-16 19:21:43 -05:00
|
|
|
"webrender_bindings",
|
2020-04-22 15:35:13 +00:00
|
|
|
"wgpu_bindings",
|
2021-07-29 23:29:43 +00:00
|
|
|
"skia",
|
2013-02-25 12:47:21 -08:00
|
|
|
]
|
|
|
|
|
2013-03-11 14:47:40 -04:00
|
|
|
if CONFIG["ENABLE_TESTS"]:
|
|
|
|
DIRS += ["tests/gtest"]
|
|
|
|
|
2022-09-07 11:27:34 +00:00
|
|
|
if CONFIG["FUZZING_INTERFACES"]:
|
|
|
|
DIRS += ["tests/fuzz"]
|
|
|
|
|
2014-07-29 08:55:55 +09:00
|
|
|
TEST_DIRS += ["tests"]
|
2013-03-19 11:47:00 -07:00
|
|
|
|
2019-11-07 23:07:20 +00:00
|
|
|
SPHINX_TREES["/gfx"] = "docs"
|
2017-10-02 18:22:56 +00:00
|
|
|
|
|
|
|
with Files("docs/**"):
|
|
|
|
SCHEDULES.exclusive = ["docs"]
|