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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 #"//ui/*", # Just a few problems. | 109 #"//ui/*", # Just a few problems. |
110 "//url/*", | 110 "//url/*", |
111 "//v8/*", | 111 "//v8/*", |
112 ] | 112 ] |
113 | 113 |
114 # These are the list of GN files that run exec_script. This whitelist exists | 114 # These are the list of GN files that run exec_script. This whitelist exists |
115 # to force additional review for new uses of exec_script, which is strongly | 115 # to force additional review for new uses of exec_script, which is strongly |
116 # discouraged except for gypi_to_gn calls. | 116 # discouraged except for gypi_to_gn calls. |
117 exec_script_whitelist = [ | 117 exec_script_whitelist = [ |
118 "//ash/BUILD.gn", | 118 "//ash/BUILD.gn", |
119 "//build/config/android/BUILD.gn", | |
120 "//build/config/android/config.gni", | 119 "//build/config/android/config.gni", |
121 "//build/config/android/internal_rules.gni", | 120 "//build/config/android/internal_rules.gni", |
122 "//build/config/android/rules.gni", | 121 "//build/config/android/rules.gni", |
123 "//build/config/compiler/BUILD.gn", | 122 "//build/config/compiler/BUILD.gn", |
124 "//build/config/gcc/gcc_version.gni", | 123 "//build/config/gcc/gcc_version.gni", |
125 "//build/config/ios/ios_sdk.gni", | 124 "//build/config/ios/ios_sdk.gni", |
126 "//build/config/linux/BUILD.gn", | 125 "//build/config/linux/BUILD.gn", |
127 "//build/config/linux/pkg_config.gni", | 126 "//build/config/linux/pkg_config.gni", |
128 "//build/config/mac/mac_sdk.gni", | 127 "//build/config/mac/mac_sdk.gni", |
| 128 "//build/config/posix/BUILD.gn", |
129 "//build/config/win/BUILD.gn", | 129 "//build/config/win/BUILD.gn", |
130 "//build/config/win/visual_studio_version.gni", | 130 "//build/config/win/visual_studio_version.gni", |
131 "//build/gn_helpers.py", | 131 "//build/gn_helpers.py", |
132 "//build/gypi_to_gn.py", | 132 "//build/gypi_to_gn.py", |
133 "//build/linux/BUILD.gn", | 133 "//build/linux/BUILD.gn", |
134 "//build/toolchain/gcc_toolchain.gni", | 134 "//build/toolchain/gcc_toolchain.gni", |
135 "//build/toolchain/mac/BUILD.gn", | 135 "//build/toolchain/mac/BUILD.gn", |
136 "//build/toolchain/nacl/BUILD.gn", | 136 "//build/toolchain/nacl/BUILD.gn", |
137 "//build/toolchain/win/BUILD.gn", | 137 "//build/toolchain/win/BUILD.gn", |
138 "//build/util/version.gni", | 138 "//build/util/version.gni", |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 "//tools/gn/format_test_data/055.golden", | 212 "//tools/gn/format_test_data/055.golden", |
213 "//tools/gn/function_exec_script.cc", | 213 "//tools/gn/function_exec_script.cc", |
214 "//tools/gn/gn.gyp", | 214 "//tools/gn/gn.gyp", |
215 "//tools/gn/input_conversion.cc", | 215 "//tools/gn/input_conversion.cc", |
216 "//tools/gn/misc/emacs/gn.el", | 216 "//tools/gn/misc/emacs/gn.el", |
217 "//tools/gn/misc/vim/syntax/gn.vim", | 217 "//tools/gn/misc/vim/syntax/gn.vim", |
218 "//tools/gn/setup.cc", | 218 "//tools/gn/setup.cc", |
219 "//ui/accessibility/BUILD.gn", | 219 "//ui/accessibility/BUILD.gn", |
220 "//ui/views/BUILD.gn", | 220 "//ui/views/BUILD.gn", |
221 ] | 221 ] |
OLD | NEW |