| OLD | NEW |
| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 outputs = [ "$root_out_dir/resources/inspector/devtools_extension_api.js" ] | 150 outputs = [ "$root_out_dir/resources/inspector/devtools_extension_api.js" ] |
| 151 | 151 |
| 152 args = rebase_path(outputs, root_build_dir) + | 152 args = rebase_path(outputs, root_build_dir) + |
| 153 rebase_path(gypi_values.devtools_extension_api_files, root_build_dir) | 153 rebase_path(gypi_values.devtools_extension_api_files, root_build_dir) |
| 154 } | 154 } |
| 155 | 155 |
| 156 action("supported_css_properties") { | 156 action("supported_css_properties") { |
| 157 script = "scripts/generate_supported_css.py" | 157 script = "scripts/generate_supported_css.py" |
| 158 | 158 |
| 159 inputs = [ | 159 inputs = [ |
| 160 "../core/css/CSSPropertyNames.in", | |
| 161 "../core/css/SVGCSSPropertyNames.in", | |
| 162 "../core/css/CSSProperties.in", | 160 "../core/css/CSSProperties.in", |
| 163 ] | 161 ] |
| 164 | 162 |
| 165 outputs = [ | 163 outputs = [ |
| 166 blink_devtools_output_dir + "SupportedCSSProperties.js" | 164 blink_devtools_output_dir + "SupportedCSSProperties.js" |
| 167 ] | 165 ] |
| 168 | 166 |
| 169 args = rebase_path(inputs, root_build_dir) + | 167 args = rebase_path(inputs, root_build_dir) + |
| 170 rebase_path(outputs, root_build_dir) | 168 rebase_path(outputs, root_build_dir) |
| 171 } | 169 } |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 script = "scripts/concatenate_css_files.py" | 335 script = "scripts/concatenate_css_files.py" |
| 338 | 336 |
| 339 input_stylesheet = "front_end/inspector.css" | 337 input_stylesheet = "front_end/inspector.css" |
| 340 inputs = [ input_stylesheet ] + devtools_core_base_files | 338 inputs = [ input_stylesheet ] + devtools_core_base_files |
| 341 | 339 |
| 342 outputs = [ "$root_out_dir/resources/inspector/inspector.css" ] | 340 outputs = [ "$root_out_dir/resources/inspector/inspector.css" ] |
| 343 | 341 |
| 344 args = [ rebase_path(input_stylesheet, root_build_dir) ] + | 342 args = [ rebase_path(input_stylesheet, root_build_dir) ] + |
| 345 rebase_path(outputs, root_build_dir) | 343 rebase_path(outputs, root_build_dir) |
| 346 } | 344 } |
| OLD | NEW |