| 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 devtools_embedder_scripts = [ | 8 devtools_embedder_scripts = [ |
| 9 "front_end/devtools.js", | 9 "front_end/devtools.js", |
| 10 "front_end/Tests.js", | 10 "front_end/Tests.js", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "front_end/bindings/LiveLocation.js", | 161 "front_end/bindings/LiveLocation.js", |
| 162 "front_end/bindings/NetworkMapping.js", | 162 "front_end/bindings/NetworkMapping.js", |
| 163 "front_end/bindings/NetworkProject.js", | 163 "front_end/bindings/NetworkProject.js", |
| 164 "front_end/bindings/PresentationConsoleMessageHelper.js", | 164 "front_end/bindings/PresentationConsoleMessageHelper.js", |
| 165 "front_end/bindings/ResourceScriptMapping.js", | 165 "front_end/bindings/ResourceScriptMapping.js", |
| 166 "front_end/bindings/ResourceUtils.js", | 166 "front_end/bindings/ResourceUtils.js", |
| 167 "front_end/bindings/SASSSourceMapping.js", | 167 "front_end/bindings/SASSSourceMapping.js", |
| 168 "front_end/bindings/StylesSourceMapping.js", | 168 "front_end/bindings/StylesSourceMapping.js", |
| 169 "front_end/bindings/TempFile.js", | 169 "front_end/bindings/TempFile.js", |
| 170 ] | 170 ] |
| 171 devtools_persistence_js_files = [ "front_end/persistence/Persistence.js" ] | 171 devtools_persistence_js_files = [ |
| 172 "front_end/persistence/DefaultMapping.js", |
| 173 "front_end/persistence/Persistence.js", |
| 174 ] |
| 172 devtools_platform_js_files = [ | 175 devtools_platform_js_files = [ |
| 173 "front_end/platform/DOMExtension.js", | 176 "front_end/platform/DOMExtension.js", |
| 174 "front_end/platform/utilities.js", | 177 "front_end/platform/utilities.js", |
| 175 ] | 178 ] |
| 176 devtools_toolbox_bootstrap_js_files = | 179 devtools_toolbox_bootstrap_js_files = |
| 177 [ "front_end/toolbox_bootstrap/Toolbox.js" ] | 180 [ "front_end/toolbox_bootstrap/Toolbox.js" ] |
| 178 devtools_emulation_js_files = [ | 181 devtools_emulation_js_files = [ |
| 179 "front_end/emulation/devicesSettingsTab.css", | 182 "front_end/emulation/devicesSettingsTab.css", |
| 180 "front_end/emulation/deviceModeToolbar.css", | 183 "front_end/emulation/deviceModeToolbar.css", |
| 181 "front_end/emulation/deviceModeView.css", | 184 "front_end/emulation/deviceModeView.css", |
| (...skipping 944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1126 deps = [ | 1129 deps = [ |
| 1127 ":frontend_protocol_sources", | 1130 ":frontend_protocol_sources", |
| 1128 ":supported_css_properties", | 1131 ":supported_css_properties", |
| 1129 ] | 1132 ] |
| 1130 sources = generated_scripts | 1133 sources = generated_scripts |
| 1131 outputs = [ | 1134 outputs = [ |
| 1132 "$resources_out_debug_dir/{{source_file_part}}", | 1135 "$resources_out_debug_dir/{{source_file_part}}", |
| 1133 ] | 1136 ] |
| 1134 } | 1137 } |
| 1135 } | 1138 } |
| OLD | NEW |