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