| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 "front_end/bindings/NetworkProject.js", | 168 "front_end/bindings/NetworkProject.js", |
| 169 "front_end/bindings/PresentationConsoleMessageHelper.js", | 169 "front_end/bindings/PresentationConsoleMessageHelper.js", |
| 170 "front_end/bindings/ResourceScriptMapping.js", | 170 "front_end/bindings/ResourceScriptMapping.js", |
| 171 "front_end/bindings/ResourceUtils.js", | 171 "front_end/bindings/ResourceUtils.js", |
| 172 "front_end/bindings/SASSSourceMapping.js", | 172 "front_end/bindings/SASSSourceMapping.js", |
| 173 "front_end/bindings/StylesSourceMapping.js", | 173 "front_end/bindings/StylesSourceMapping.js", |
| 174 "front_end/bindings/TempFile.js", | 174 "front_end/bindings/TempFile.js", |
| 175 ] | 175 ] |
| 176 devtools_persistence_js_files = [ | 176 devtools_persistence_js_files = [ |
| 177 "front_end/persistence/DefaultMapping.js", | 177 "front_end/persistence/DefaultMapping.js", |
| 178 "front_end/persistence/Automapping.js", |
| 178 "front_end/persistence/Persistence.js", | 179 "front_end/persistence/Persistence.js", |
| 179 ] | 180 ] |
| 180 devtools_platform_js_files = [ | 181 devtools_platform_js_files = [ |
| 181 "front_end/platform/DOMExtension.js", | 182 "front_end/platform/DOMExtension.js", |
| 182 "front_end/platform/utilities.js", | 183 "front_end/platform/utilities.js", |
| 183 ] | 184 ] |
| 184 devtools_toolbox_bootstrap_js_files = | 185 devtools_toolbox_bootstrap_js_files = |
| 185 [ "front_end/toolbox_bootstrap/Toolbox.js" ] | 186 [ "front_end/toolbox_bootstrap/Toolbox.js" ] |
| 186 devtools_emulation_js_files = [ | 187 devtools_emulation_js_files = [ |
| 187 "front_end/emulation/devicesSettingsTab.css", | 188 "front_end/emulation/devicesSettingsTab.css", |
| (...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1147 deps = [ | 1148 deps = [ |
| 1148 ":frontend_protocol_sources", | 1149 ":frontend_protocol_sources", |
| 1149 ":supported_css_properties", | 1150 ":supported_css_properties", |
| 1150 ] | 1151 ] |
| 1151 sources = generated_scripts | 1152 sources = generated_scripts |
| 1152 outputs = [ | 1153 outputs = [ |
| 1153 "$resources_out_debug_dir/{{source_file_part}}", | 1154 "$resources_out_debug_dir/{{source_file_part}}", |
| 1154 ] | 1155 ] |
| 1155 } | 1156 } |
| 1156 } | 1157 } |
| OLD | NEW |