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

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: up-to-date version of entire patch 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
« no previous file with comments | « Source/core/css/resolver/StyleResolver.cpp ('k') | Source/devtools/devtools.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 outputs = [ "$root_out_dir/resources/inspector/devtools_extension_api.js" ] 149 outputs = [ "$root_out_dir/resources/inspector/devtools_extension_api.js" ]
150 150
151 args = rebase_path(outputs, root_build_dir) + 151 args = rebase_path(outputs, root_build_dir) +
152 rebase_path(gypi_values.devtools_extension_api_files, root_build_dir) 152 rebase_path(gypi_values.devtools_extension_api_files, root_build_dir)
153 } 153 }
154 154
155 action("supported_css_properties") { 155 action("supported_css_properties") {
156 script = "scripts/generate_supported_css.py" 156 script = "scripts/generate_supported_css.py"
157 157
158 inputs = [ 158 inputs = [
159 "../core/css/CSSPropertyNames.in", 159 "../core/css/CSSProperties.in",
160 "../core/css/SVGCSSPropertyNames.in",
161 "../core/css/CSSShorthands.in",
162 ] 160 ]
163 161
164 outputs = [ 162 outputs = [
165 blink_devtools_output_dir + "SupportedCSSProperties.js" 163 blink_devtools_output_dir + "SupportedCSSProperties.js"
166 ] 164 ]
167 165
168 args = rebase_path(inputs, root_build_dir) + 166 args = rebase_path(inputs, root_build_dir) +
169 rebase_path(outputs, root_build_dir) 167 rebase_path(outputs, root_build_dir)
170 } 168 }
171 169
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 script = "scripts/concatenate_css_files.py" 343 script = "scripts/concatenate_css_files.py"
346 344
347 input_stylesheet = "front_end/inspector.css" 345 input_stylesheet = "front_end/inspector.css"
348 inputs = [ input_stylesheet ] + devtools_core_base_files 346 inputs = [ input_stylesheet ] + devtools_core_base_files
349 347
350 outputs = [ "$root_out_dir/resources/inspector/inspector.css" ] 348 outputs = [ "$root_out_dir/resources/inspector/inspector.css" ]
351 349
352 args = [ rebase_path(input_stylesheet, root_build_dir) ] + 350 args = [ rebase_path(input_stylesheet, root_build_dir) ] +
353 rebase_path(outputs, root_build_dir) 351 rebase_path(outputs, root_build_dir)
354 } 352 }
OLDNEW
« no previous file with comments | « Source/core/css/resolver/StyleResolver.cpp ('k') | Source/devtools/devtools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698