OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This file is used by the gn meta-buildsystem find the root of the source tree | 5 # This file is used by the gn meta-buildsystem find the root of the source tree |
6 # and to set startup options. | 6 # and to set startup options. |
7 | 7 |
8 # The location of the build configuration file. | 8 # The location of the build configuration file. |
9 buildconfig = "//build/config/BUILDCONFIG.gn" | 9 buildconfig = "//build/config/BUILDCONFIG.gn" |
10 | 10 |
11 # The secondary source root is a parallel directory tree where | 11 # The secondary source root is a parallel directory tree where |
12 # GN build files are placed when they can not be placed directly | 12 # GN build files are placed when they can not be placed directly |
13 # in the source tree, e.g. for third party source trees. | 13 # in the source tree, e.g. for third party source trees. |
14 secondary_source = "//build/secondary/" | 14 secondary_source = "//build/secondary/" |
15 | |
16 # The set of targets known to pass 'gn check'. When all targets pass, remove | |
17 # this. | |
18 check_targets = [ | |
19 "//apps/*", | |
20 "//base/*", | |
21 "//benchmarks/*", | |
22 "//build/*", | |
23 "//buildtools/*", | |
24 "//cc/*", | |
25 "//crypto/*", | |
26 "//dart/*", | |
27 "//device/*", | |
28 "//examples/*", | |
29 "//fusl/*", | |
30 "//gin/*", | |
31 "//gpu/*", | |
32 "//mojo/*", | |
33 "//mojom/*", | |
34 "//native_client/*", | |
35 "//sandbox/*", | |
36 "//services/*", | |
37 "//shell/*", | |
38 "//skia/*", | |
39 "//testing/*", | |
40 "//tonic/*", | |
41 "//tools/*", | |
42 "//ui/*", | |
43 "//url/*", | |
44 "//v8/*", | |
45 ] | |
OLD | NEW |