blob: 035c6c8f035a0a1929d16f9f5c5019b56731424b [file] [log] [blame]
James Robinson646469d2014-10-03 15:33:28 -07001# This file is used by the experimental meta-buildsystem in src/tools/gn to
2# find the root of the source tree and to set startup options.
3
4# The location of the build configuration file.
5buildconfig = "//build/config/BUILDCONFIG.gn"
6
7# The secondary source root is a parallel directory tree where
8# GN build files are placed when they can not be placed directly
9# in the source tree, e.g. for third party source trees.
10secondary_source = "//build/secondary/"
James Robinson5f36d372015-01-08 13:03:56 -080011
12# The set of targets known to pass 'gn check'. When all targets pass, remove
13# this.
14check_targets = [
James Robinson63d51d02015-04-03 17:17:14 -070015 "//cc/*",
16 "//crypto/*",
17 "//dart/*",
James Robinson5f36d372015-01-08 13:03:56 -080018 "//examples/*",
James Robinson63d51d02015-04-03 17:17:14 -070019 "//gin/*",
James Robinson5f36d372015-01-08 13:03:56 -080020 "//mojo/*",
James Robinson63d51d02015-04-03 17:17:14 -070021 "//mojom/*",
James Robinson5f36d372015-01-08 13:03:56 -080022 "//services/*",
23 "//shell/*",
James Robinson63d51d02015-04-03 17:17:14 -070024 "//skia/*",
James Robinson5f36d372015-01-08 13:03:56 -080025 "//sky/*",
James Robinson1a330492015-03-30 11:04:03 -070026 "//ui/*",
James Robinson63d51d02015-04-03 17:17:14 -070027 "//url/*",
James Robinson5f36d372015-01-08 13:03:56 -080028]