| OLD | NEW |
| 1 # This file is used by the experimental meta-buildsystem in src/tools/gn to | 1 # 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. | 2 # find the root of the source tree and to set startup options. |
| 3 | 3 |
| 4 # The location of the build configuration file. | 4 # The location of the build configuration file. |
| 5 buildconfig = "//build/config/BUILDCONFIG.gn" | 5 buildconfig = "//build/config/BUILDCONFIG.gn" |
| 6 | 6 |
| 7 # The secondary source root is a parallel directory tree where | 7 # The secondary source root is a parallel directory tree where |
| 8 # GN build files are placed when they can not be placed directly | 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. | 9 # in the source tree, e.g. for third party source trees. |
| 10 secondary_source = "//build/secondary/" | 10 secondary_source = "//build/secondary/" |
| 11 | 11 |
| 12 # The set of targets known to pass 'gn check'. When all targets pass, remove | 12 # The set of targets known to pass 'gn check'. When all targets pass, remove |
| 13 # this. | 13 # this. |
| 14 check_targets = [ | 14 check_targets = [ |
| 15 "//apps/*", |
| 16 "//base/*", |
| 17 "//benchmarks/*", |
| 18 "//build/*", |
| 19 "//buildtools/*", |
| 15 "//cc/*", | 20 "//cc/*", |
| 16 "//crypto/*", | 21 "//crypto/*", |
| 17 "//dart/*", | 22 "//dart/*", |
| 23 "//device/*", |
| 18 "//examples/*", | 24 "//examples/*", |
| 19 "//gin/*", | 25 "//gin/*", |
| 20 "//mojo/*", | 26 "//mojo/*", |
| 21 "//mojom/*", | 27 "//mojom/*", |
| 28 "//native_client/*", |
| 22 "//services/*", | 29 "//services/*", |
| 23 "//shell/*", | 30 "//shell/*", |
| 24 "//skia/*", | 31 "//skia/*", |
| 25 "//sky/*", | 32 "//testing/*", |
| 33 "//tools/*", |
| 26 "//ui/*", | 34 "//ui/*", |
| 27 "//url/*", | 35 "//url/*", |
| 36 "//v8/*", |
| 28 ] | 37 ] |
| OLD | NEW |