Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(426)

Side by Side Diff: .gn

Issue 1343843002: .gn modification for http://crrev.com/1334963002, Blink public/BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 #"//third_party/*", # May not ever want this. 103 #"//third_party/*", # May not ever want this.
104 "//tools/*", 104 "//tools/*",
105 105
106 #"//ui/*", # Just a few problems. 106 #"//ui/*", # Just a few problems.
107 "//url/*", 107 "//url/*",
108 "//v8/*", 108 "//v8/*",
109 ] 109 ]
110 110
111 # These are the list of GN files that run exec_script. This whitelist exists 111 # These are the list of GN files that run exec_script. This whitelist exists
112 # to force additional review for new uses of exec_script, which is strongly 112 # to force additional review for new uses of exec_script, which is strongly
113 # discouraged except for gypi_to_gn calls. 113 # discouraged except for gypi_to_gn calls.
Nico 2015/09/14 21:15:28 lgtm given that gypi_to_gn (what you're adding) is
114 exec_script_whitelist = [ 114 exec_script_whitelist = [
115 "//ash/BUILD.gn", 115 "//ash/BUILD.gn",
116 "//build/config/android/BUILD.gn", 116 "//build/config/android/BUILD.gn",
117 "//build/config/android/config.gni", 117 "//build/config/android/config.gni",
118 "//build/config/android/internal_rules.gni", 118 "//build/config/android/internal_rules.gni",
119 "//build/config/android/rules.gni", 119 "//build/config/android/rules.gni",
120 "//build/config/compiler/BUILD.gn", 120 "//build/config/compiler/BUILD.gn",
121 "//build/config/gcc/gcc_version.gni", 121 "//build/config/gcc/gcc_version.gni",
122 "//build/config/ios/ios_sdk.gni", 122 "//build/config/ios/ios_sdk.gni",
123 "//build/config/linux/BUILD.gn", 123 "//build/config/linux/BUILD.gn",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 "//third_party/WebKit/Source/bindings/bindings.gni", 190 "//third_party/WebKit/Source/bindings/bindings.gni",
191 "//third_party/WebKit/Source/bindings/scripts/scripts.gni", 191 "//third_party/WebKit/Source/bindings/scripts/scripts.gni",
192 "//third_party/WebKit/Source/config.gni", 192 "//third_party/WebKit/Source/config.gni",
193 "//third_party/WebKit/Source/core/core.gni", 193 "//third_party/WebKit/Source/core/core.gni",
194 "//third_party/WebKit/Source/devtools/BUILD.gn", 194 "//third_party/WebKit/Source/devtools/BUILD.gn",
195 "//third_party/WebKit/Source/modules/modules.gni", 195 "//third_party/WebKit/Source/modules/modules.gni",
196 "//third_party/WebKit/Source/platform/BUILD.gn", 196 "//third_party/WebKit/Source/platform/BUILD.gn",
197 "//third_party/WebKit/Source/platform/platform.gni", 197 "//third_party/WebKit/Source/platform/platform.gni",
198 "//third_party/WebKit/Source/web/BUILD.gn", 198 "//third_party/WebKit/Source/web/BUILD.gn",
199 "//third_party/WebKit/Source/wtf/BUILD.gn", 199 "//third_party/WebKit/Source/wtf/BUILD.gn",
200 "//third_party/WebKit/public/BUILD.gn",
200 "//tools/gn/BUILD.gn", 201 "//tools/gn/BUILD.gn",
201 "//tools/gn/build_settings.h", 202 "//tools/gn/build_settings.h",
202 "//tools/gn/command_help.cc", 203 "//tools/gn/command_help.cc",
203 "//tools/gn/docs/language.md", 204 "//tools/gn/docs/language.md",
204 "//tools/gn/format_test_data/053.gn", 205 "//tools/gn/format_test_data/053.gn",
205 "//tools/gn/format_test_data/053.golden", 206 "//tools/gn/format_test_data/053.golden",
206 "//tools/gn/format_test_data/055.gn", 207 "//tools/gn/format_test_data/055.gn",
207 "//tools/gn/format_test_data/055.golden", 208 "//tools/gn/format_test_data/055.golden",
208 "//tools/gn/function_exec_script.cc", 209 "//tools/gn/function_exec_script.cc",
209 "//tools/gn/gn.gyp", 210 "//tools/gn/gn.gyp",
210 "//tools/gn/input_conversion.cc", 211 "//tools/gn/input_conversion.cc",
211 "//tools/gn/misc/emacs/gn.el", 212 "//tools/gn/misc/emacs/gn.el",
212 "//tools/gn/misc/vim/syntax/gn.vim", 213 "//tools/gn/misc/vim/syntax/gn.vim",
213 "//tools/gn/setup.cc", 214 "//tools/gn/setup.cc",
214 "//ui/accessibility/BUILD.gn", 215 "//ui/accessibility/BUILD.gn",
215 "//ui/views/BUILD.gn", 216 "//ui/views/BUILD.gn",
216 ] 217 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698