Chromium Code Reviews| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 285 imported_files = gypi_values.devtools_profiler_js_files | 285 imported_files = gypi_values.devtools_profiler_js_files |
| 286 } | 286 } |
| 287 | 287 |
| 288 concatenate_module_scripts("build_resources_module") { | 288 concatenate_module_scripts("build_resources_module") { |
| 289 module_name = "resources" | 289 module_name = "resources" |
| 290 imported_files = gypi_values.devtools_resources_js_files | 290 imported_files = gypi_values.devtools_resources_js_files |
| 291 } | 291 } |
| 292 | 292 |
| 293 concatenate_module_scripts("build_script_formatter_worker_module") { | 293 concatenate_module_scripts("build_script_formatter_worker_module") { |
| 294 module_name = "script_formatter_worker" | 294 module_name = "script_formatter_worker" |
| 295 imported_files = gypi_values.devtools_uglify_files | 295 imported_files = gypi_values.devtools_uglify_files + gypi_values.devtools_scri pt_formatter_worker_js_files |
|
apavlov
2014/08/18 13:23:17
Please wrap to 80 chars ('+' is left on the line a
lushnikov
2014/08/18 13:27:07
Done.
| |
| 296 } | 296 } |
| 297 | 297 |
| 298 concatenate_module_scripts("build_settings_module") { | 298 concatenate_module_scripts("build_settings_module") { |
| 299 module_name = "settings" | 299 module_name = "settings" |
| 300 imported_files = gypi_values.devtools_settings_js_files | 300 imported_files = gypi_values.devtools_settings_js_files |
| 301 } | 301 } |
| 302 | 302 |
| 303 concatenate_module_scripts("build_source_frame_module") { | 303 concatenate_module_scripts("build_source_frame_module") { |
| 304 module_name = "source_frame" | 304 module_name = "source_frame" |
| 305 imported_files = gypi_values.devtools_source_frame_js_files + | 305 imported_files = gypi_values.devtools_source_frame_js_files + |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 335 script = "scripts/concatenate_css_files.py" | 335 script = "scripts/concatenate_css_files.py" |
| 336 | 336 |
| 337 input_stylesheet = "front_end/inspector.css" | 337 input_stylesheet = "front_end/inspector.css" |
| 338 inputs = [ input_stylesheet ] + devtools_core_base_files | 338 inputs = [ input_stylesheet ] + devtools_core_base_files |
| 339 | 339 |
| 340 outputs = [ "$root_out_dir/resources/inspector/inspector.css" ] | 340 outputs = [ "$root_out_dir/resources/inspector/inspector.css" ] |
| 341 | 341 |
| 342 args = [ rebase_path(input_stylesheet, root_build_dir) ] + | 342 args = [ rebase_path(input_stylesheet, root_build_dir) ] + |
| 343 rebase_path(outputs, root_build_dir) | 343 rebase_path(outputs, root_build_dir) |
| 344 } | 344 } |
| OLD | NEW |