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

Side by Side Diff: Source/devtools/BUILD.gn

Issue 371443003: Merge .in files for css/svg properties into a single file (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cascade
Patch Set: Created 6 years, 5 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 blink_devtools_output_dir = "$root_gen_dir/blink/devtools/" 5 blink_devtools_output_dir = "$root_gen_dir/blink/devtools/"
6 6
7 gypi_values = exec_script( 7 gypi_values = exec_script(
8 "//build/gypi_to_gn.py", 8 "//build/gypi_to_gn.py",
9 [ rebase_path("devtools.gypi") ], 9 [ rebase_path("devtools.gypi") ],
10 "scope", 10 "scope",
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 outputs = [ "$root_out_dir/resources/inspector/devtools_extension_api.js" ] 176 outputs = [ "$root_out_dir/resources/inspector/devtools_extension_api.js" ]
177 177
178 args = rebase_path(outputs, root_build_dir) + 178 args = rebase_path(outputs, root_build_dir) +
179 rebase_path(gypi_values.devtools_extension_api_files, root_build_dir) 179 rebase_path(gypi_values.devtools_extension_api_files, root_build_dir)
180 } 180 }
181 181
182 action("supported_css_properties") { 182 action("supported_css_properties") {
183 script = "scripts/generate_supported_css.py" 183 script = "scripts/generate_supported_css.py"
184 184
185 source_prereqs = [ 185 source_prereqs = [
186 "../core/css/CSSPropertyNames.in", 186 "../core/css/CSSProperties.in",
187 "../core/css/SVGCSSPropertyNames.in",
188 "../core/css/CSSShorthands.in",
189 ] 187 ]
190 188
191 outputs = [ 189 outputs = [
192 blink_devtools_output_dir + "SupportedCSSProperties.js" 190 blink_devtools_output_dir + "SupportedCSSProperties.js"
193 ] 191 ]
194 192
195 args = rebase_path(source_prereqs, root_build_dir) + 193 args = rebase_path(source_prereqs, root_build_dir) +
196 rebase_path(outputs, root_build_dir) 194 rebase_path(outputs, root_build_dir)
197 } 195 }
198 196
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 input_page = "front_end/inspector.html" 378 input_page = "front_end/inspector.html"
381 source_prereqs = [ input_page ] + all_devtools_files 379 source_prereqs = [ input_page ] + all_devtools_files
382 search_path = [ "front_end" ] 380 search_path = [ "front_end" ]
383 381
384 outputs = [ "$root_out_dir/resources/inspector/inspector.css" ] 382 outputs = [ "$root_out_dir/resources/inspector/inspector.css" ]
385 383
386 args = [ rebase_path(input_page, root_build_dir) ] + 384 args = [ rebase_path(input_page, root_build_dir) ] +
387 rebase_path(search_path, root_build_dir) + 385 rebase_path(search_path, root_build_dir) +
388 rebase_path(outputs, root_build_dir) 386 rebase_path(outputs, root_build_dir)
389 } 387 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698