moz.build (601B)
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 DIRS += [ 8 "app", 9 "chromium", 10 "glue", 11 "ipdl", 12 "testshell", 13 ] 14 15 if CONFIG["OS_ARCH"] == "WINNT": 16 DIRS += ["mscom"] 17 18 TEST_DIRS += [ 19 "gtest", 20 ] 21 22 with Files("**"): 23 BUG_COMPONENT = ("Core", "IPC") 24 25 SPHINX_TREES["/ipc"] = "docs" 26 27 with Files("docs/**"): 28 SCHEDULES.exclusive = ["docs"]