moz.build (950B)
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/. 6 7 with Files("**"): 8 BUG_COMPONENT = ("Core", "Graphics") 9 SCHEDULES.inclusive += ["android-hw-gfx"] 10 with Files("wr/**"): 11 BUG_COMPONENT = ("Core", "Graphics: WebRender") 12 13 DIRS += [ 14 "cairo", 15 "2d", 16 "ycbcr", 17 "angle", 18 "src", 19 "qcms", 20 "gl", 21 "layers", 22 "graphite2/src", 23 "harfbuzz/src", 24 "ots/src", 25 "thebes", 26 "ipc", 27 "vr", 28 "config", 29 "webrender_bindings", 30 "wgpu_bindings", 31 "skia", 32 ] 33 34 TEST_DIRS += ["tests/gtest"] 35 36 if CONFIG["FUZZING_INTERFACES"]: 37 TEST_DIRS += ["tests/fuzz"] 38 39 TEST_DIRS += ["tests"] 40 41 SPHINX_TREES["/gfx"] = "docs" 42 43 with Files("docs/**"): 44 SCHEDULES.exclusive = ["docs"]