| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//third_party/WebKit/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
| 7 | 7 |
| 8 gypi_values = exec_script("//build/gypi_to_gn.py", | 8 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 9 [ rebase_path("devtools.gypi") ], | 9 [ rebase_path("devtools.gypi") ], |
| 10 "scope", | 10 "scope", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 } else { | 136 } else { |
| 137 # Release: pick compiled non-remote modules and concatenated app files. | 137 # Release: pick compiled non-remote modules and concatenated app files. |
| 138 generated_files = [ | 138 generated_files = [ |
| 139 resources_out_dir + "inspector.html", | 139 resources_out_dir + "inspector.html", |
| 140 resources_out_dir + "inspector.js", | 140 resources_out_dir + "inspector.js", |
| 141 resources_out_dir + "toolbox.html", | 141 resources_out_dir + "toolbox.html", |
| 142 resources_out_dir + "toolbox.js", | 142 resources_out_dir + "toolbox.js", |
| 143 resources_out_dir + "formatter_worker.js", | 143 resources_out_dir + "formatter_worker.js", |
| 144 resources_out_dir + "heap_snapshot_worker.js", | 144 resources_out_dir + "heap_snapshot_worker.js", |
| 145 resources_out_dir + "temp_storage_shared_worker.js", | 145 resources_out_dir + "temp_storage_shared_worker.js", |
| 146 resources_out_dir + "accessibility/accessibility_module.js", | |
| 147 resources_out_dir + "audits/audits_module.js", | 146 resources_out_dir + "audits/audits_module.js", |
| 148 resources_out_dir + "animation/animation_module.js", | 147 resources_out_dir + "animation/animation_module.js", |
| 149 resources_out_dir + "components_lazy/components_lazy_module.js", | 148 resources_out_dir + "components_lazy/components_lazy_module.js", |
| 150 resources_out_dir + "console/console_module.js", | 149 resources_out_dir + "console/console_module.js", |
| 151 resources_out_dir + "devices/devices_module.js", | 150 resources_out_dir + "devices/devices_module.js", |
| 152 resources_out_dir + "diff/diff_module.js", | 151 resources_out_dir + "diff/diff_module.js", |
| 153 resources_out_dir + "elements/elements_module.js", | 152 resources_out_dir + "elements/elements_module.js", |
| 154 resources_out_dir + "es_tree/es_tree_module.js", | 153 resources_out_dir + "es_tree/es_tree_module.js", |
| 155 resources_out_dir + "layers/layers_module.js", | 154 resources_out_dir + "layers/layers_module.js", |
| 156 resources_out_dir + "network/network_module.js", | 155 resources_out_dir + "network/network_module.js", |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 } | 348 } |
| 350 | 349 |
| 351 copy("copy_codemirror_files") { | 350 copy("copy_codemirror_files") { |
| 352 sources = | 351 sources = |
| 353 gypi_values.devtools_cm_js_files + gypi_values.devtools_cm_css_files | 352 gypi_values.devtools_cm_js_files + gypi_values.devtools_cm_css_files |
| 354 outputs = [ | 353 outputs = [ |
| 355 resources_out_dir + "cm/{{source_file_part}}", | 354 resources_out_dir + "cm/{{source_file_part}}", |
| 356 ] | 355 ] |
| 357 } | 356 } |
| 358 } | 357 } |
| OLD | NEW |