| 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 import("//build/dotfile_settings.gni") | 5 import("//build/dotfile_settings.gni") |
| 6 | 6 |
| 7 # The location of the build configuration file. | 7 # The location of the build configuration file. |
| 8 buildconfig = "//build/config/BUILDCONFIG.gn" | 8 buildconfig = "//build/config/BUILDCONFIG.gn" |
| 9 | 9 |
| 10 # The secondary source root is a parallel directory tree where | 10 # The secondary source root is a parallel directory tree where |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 # this situation much easier to create. if the build always lists the | 251 # this situation much easier to create. if the build always lists the |
| 252 # files and passes them to a script, it will always be correct. | 252 # files and passes them to a script, it will always be correct. |
| 253 | 253 |
| 254 exec_script_whitelist = | 254 exec_script_whitelist = |
| 255 build_dotfile_settings.exec_script_whitelist + [ | 255 build_dotfile_settings.exec_script_whitelist + [ |
| 256 # Whitelist entries for //build should go into | 256 # Whitelist entries for //build should go into |
| 257 # //build/dotfile_settings.gni instead, so that they can be shared | 257 # //build/dotfile_settings.gni instead, so that they can be shared |
| 258 # with other repos. The entries in this list should be only for files | 258 # with other repos. The entries in this list should be only for files |
| 259 # in the Chromium repo outside of //build. | 259 # in the Chromium repo outside of //build. |
| 260 "//build_overrides/build.gni", | 260 "//build_overrides/build.gni", |
| 261 "//chromeos/BUILD.gn", | |
| 262 | 261 |
| 263 # TODO(dgn): Layer violation but breaks the build otherwise, see | 262 # TODO(dgn): Layer violation but breaks the build otherwise, see |
| 264 # https://crbug.com/474506. | 263 # https://crbug.com/474506. |
| 265 "//clank/java/BUILD.gn", | 264 "//clank/java/BUILD.gn", |
| 266 "//clank/native/BUILD.gn", | 265 "//clank/native/BUILD.gn", |
| 267 | 266 |
| 268 "//remoting/host/installer/linux/BUILD.gn", | 267 "//remoting/host/installer/linux/BUILD.gn", |
| 269 "//remoting/remoting_version.gni", | 268 "//remoting/remoting_version.gni", |
| 270 "//remoting/host/installer/win/generate_clsids.gni", | 269 "//remoting/host/installer/win/generate_clsids.gni", |
| 271 | 270 |
| 272 # TODO(dpranke): Get these from the appropriate repos instead. | 271 # TODO(dpranke): Get these from the appropriate repos instead. |
| 273 "//third_party/angle/BUILD.gn", | 272 "//third_party/angle/BUILD.gn", |
| 274 "//third_party/angle/src/tests/BUILD.gn", | 273 "//third_party/angle/src/tests/BUILD.gn", |
| 275 "//third_party/angle/src/vulkan_support/BUILD.gn", | 274 "//third_party/angle/src/vulkan_support/BUILD.gn", |
| 276 "//third_party/catapult/tracing/BUILD.gn", | 275 "//third_party/catapult/tracing/BUILD.gn", |
| 277 "//third_party/google_input_tools/inputview.gni", | 276 "//third_party/google_input_tools/inputview.gni", |
| 278 | 277 |
| 279 # CLD2 should be removed soon, delete this when we do. | 278 # CLD2 should be removed soon, delete this when we do. |
| 280 "//third_party/cld_2/BUILD.gn", | 279 "//third_party/cld_2/BUILD.gn", |
| 281 "//tools/grit/grit_rule.gni", | 280 "//tools/grit/grit_rule.gni", |
| 282 | 281 |
| 283 # Not gypi-to-gn. | 282 # Not gypi-to-gn. |
| 284 "//google_apis/BUILD.gn", | 283 "//google_apis/BUILD.gn", |
| 285 "//printing/BUILD.gn", | 284 "//printing/BUILD.gn", |
| 286 ] | 285 ] |
| OLD | NEW |