OLD | NEW |
---|---|
1 # This file is used by the GN meta build system to find the root of the source | 1 # This file is used by the GN meta build system to find the root of the source |
2 # tree and to set startup options. For documentation on the values set in this | 2 # tree and to set startup options. For documentation on the values set in this |
3 # file, run "gn help dotfile" at the command line. | 3 # file, run "gn help dotfile" at the command line. |
4 | 4 |
5 # The location of the build configuration file. | 5 # The location of the build configuration file. |
6 buildconfig = "//build/config/BUILDCONFIG.gn" | 6 buildconfig = "//build/config/BUILDCONFIG.gn" |
7 | 7 |
8 # The secondary source root is a parallel directory tree where | 8 # The secondary source root is a parallel directory tree where |
9 # GN build files are placed when they can not be placed directly | 9 # GN build files are placed when they can not be placed directly |
10 # in the source tree, e.g. for third party source trees. | 10 # in the source tree, e.g. for third party source trees. |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 #"//ui/*", # Just a few problems. | 77 #"//ui/*", # Just a few problems. |
78 "//url/*", | 78 "//url/*", |
79 "//v8/*", | 79 "//v8/*", |
80 ] | 80 ] |
81 | 81 |
82 # These are the list of GN files that run exec_script. This whitelist exists | 82 # These are the list of GN files that run exec_script. This whitelist exists |
83 # to force additional review for new uses of exec_script, which is strongly | 83 # to force additional review for new uses of exec_script, which is strongly |
84 # discouraged except for gypi_to_gn calls. | 84 # discouraged except for gypi_to_gn calls. |
85 exec_script_whitelist = [ | 85 exec_script_whitelist = [ |
86 "//ash/BUILD.gn", | 86 "//ash/BUILD.gn", |
87 | |
88 # TODO(dpranke): Remove this. | |
89 "//base/BUILD.gn", | |
Dirk Pranke
2015/06/03 02:24:54
See comments in base/BUILD.gn.
| |
90 | |
87 "//build/config/android/BUILD.gn", | 91 "//build/config/android/BUILD.gn", |
88 "//build/config/android/config.gni", | 92 "//build/config/android/config.gni", |
89 "//build/config/android/internal_rules.gni", | 93 "//build/config/android/internal_rules.gni", |
90 "//build/config/android/rules.gni", | 94 "//build/config/android/rules.gni", |
91 "//build/config/compiler/BUILD.gn", | 95 "//build/config/compiler/BUILD.gn", |
92 "//build/config/gcc/gcc_version.gni", | 96 "//build/config/gcc/gcc_version.gni", |
93 "//build/config/ios/ios_sdk.gni", | 97 "//build/config/ios/ios_sdk.gni", |
94 "//build/config/linux/BUILD.gn", | 98 "//build/config/linux/BUILD.gn", |
95 "//build/config/linux/pkg_config.gni", | 99 "//build/config/linux/pkg_config.gni", |
96 "//build/config/mac/mac_sdk.gni", | 100 "//build/config/mac/mac_sdk.gni", |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
185 "//tools/gn/format_test_data/055.gn", | 189 "//tools/gn/format_test_data/055.gn", |
186 "//tools/gn/format_test_data/055.golden", | 190 "//tools/gn/format_test_data/055.golden", |
187 "//tools/gn/function_exec_script.cc", | 191 "//tools/gn/function_exec_script.cc", |
188 "//tools/gn/gn.gyp", | 192 "//tools/gn/gn.gyp", |
189 "//tools/gn/input_conversion.cc", | 193 "//tools/gn/input_conversion.cc", |
190 "//tools/gn/misc/emacs/gn.el", | 194 "//tools/gn/misc/emacs/gn.el", |
191 "//tools/gn/misc/vim/syntax/gn.vim", | 195 "//tools/gn/misc/vim/syntax/gn.vim", |
192 "//tools/gn/setup.cc", | 196 "//tools/gn/setup.cc", |
193 "//ui/views/BUILD.gn", | 197 "//ui/views/BUILD.gn", |
194 ] | 198 ] |
OLD | NEW |