| 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 15 matching lines...) Expand all Loading... |
| 26 gypi_values.devtools_host_js_files + | 26 gypi_values.devtools_host_js_files + |
| 27 gypi_values.devtools_screencast_js_files + | 27 gypi_values.devtools_screencast_js_files + |
| 28 gypi_values.devtools_toolbox_js_files | 28 gypi_values.devtools_toolbox_js_files |
| 29 | 29 |
| 30 devtools_extensions_js_files = gypi_values.devtools_extensions_js_files - | 30 devtools_extensions_js_files = gypi_values.devtools_extensions_js_files - |
| 31 [ "<@(devtools_extension_api_files)" ] + | 31 [ "<@(devtools_extension_api_files)" ] + |
| 32 gypi_values.devtools_extension_api_files | 32 gypi_values.devtools_extension_api_files |
| 33 | 33 |
| 34 #------------------------------------------------------------------------------- | 34 #------------------------------------------------------------------------------- |
| 35 | 35 |
| 36 visibility = "//third_party/WebKit/*" | 36 visibility = [ "//third_party/WebKit/*" ] |
| 37 | 37 |
| 38 # Probably need to parameterize this. If we set it to true, there will be some | 38 # Probably need to parameterize this. If we set it to true, there will be some |
| 39 # further work in the scripts below. | 39 # further work in the scripts below. |
| 40 debug_devtools = false | 40 debug_devtools = false |
| 41 | 41 |
| 42 group("devtools_frontend_resources") { | 42 group("devtools_frontend_resources") { |
| 43 deps = [ | 43 deps = [ |
| 44 ":build_audits_module", | 44 ":build_audits_module", |
| 45 ":build_console_module", | 45 ":build_console_module", |
| 46 ":build_core_module", | 46 ":build_core_module", |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 script = "scripts/concatenate_css_files.py" | 337 script = "scripts/concatenate_css_files.py" |
| 338 | 338 |
| 339 input_stylesheet = "front_end/inspector.css" | 339 input_stylesheet = "front_end/inspector.css" |
| 340 inputs = [ input_stylesheet ] + devtools_core_base_files | 340 inputs = [ input_stylesheet ] + devtools_core_base_files |
| 341 | 341 |
| 342 outputs = [ "$root_out_dir/resources/inspector/inspector.css" ] | 342 outputs = [ "$root_out_dir/resources/inspector/inspector.css" ] |
| 343 | 343 |
| 344 args = [ rebase_path(input_stylesheet, root_build_dir) ] + | 344 args = [ rebase_path(input_stylesheet, root_build_dir) ] + |
| 345 rebase_path(outputs, root_build_dir) | 345 rebase_path(outputs, root_build_dir) |
| 346 } | 346 } |
| OLD | NEW |