| 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/public/public_features.gni") | 6 import("//third_party/WebKit/public/public_features.gni") |
| 7 import("//third_party/WebKit/Source/core/core.gni") | 7 import("//third_party/WebKit/Source/core/core.gni") |
| 8 | 8 |
| 9 devtools_embedder_scripts = [ | 9 devtools_embedder_scripts = [ |
| 10 "front_end/devtools_compatibility.js", | 10 "front_end/devtools_compatibility.js", |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "front_end/bindings/ResourceScriptMapping.js", | 171 "front_end/bindings/ResourceScriptMapping.js", |
| 172 "front_end/bindings/ResourceUtils.js", | 172 "front_end/bindings/ResourceUtils.js", |
| 173 "front_end/bindings/SASSSourceMapping.js", | 173 "front_end/bindings/SASSSourceMapping.js", |
| 174 "front_end/bindings/StylesSourceMapping.js", | 174 "front_end/bindings/StylesSourceMapping.js", |
| 175 "front_end/bindings/TempFile.js", | 175 "front_end/bindings/TempFile.js", |
| 176 ] | 176 ] |
| 177 devtools_persistence_js_files = [ | 177 devtools_persistence_js_files = [ |
| 178 "front_end/persistence/DefaultMapping.js", | 178 "front_end/persistence/DefaultMapping.js", |
| 179 "front_end/persistence/Automapping.js", | 179 "front_end/persistence/Automapping.js", |
| 180 "front_end/persistence/Persistence.js", | 180 "front_end/persistence/Persistence.js", |
| 181 "front_end/persistence/PersistenceUtils.js", |
| 181 ] | 182 ] |
| 182 devtools_platform_js_files = [ | 183 devtools_platform_js_files = [ |
| 183 "front_end/platform/DOMExtension.js", | 184 "front_end/platform/DOMExtension.js", |
| 184 "front_end/platform/utilities.js", | 185 "front_end/platform/utilities.js", |
| 185 ] | 186 ] |
| 186 devtools_toolbox_bootstrap_js_files = | 187 devtools_toolbox_bootstrap_js_files = |
| 187 [ "front_end/toolbox_bootstrap/Toolbox.js" ] | 188 [ "front_end/toolbox_bootstrap/Toolbox.js" ] |
| 188 devtools_emulation_js_files = [ | 189 devtools_emulation_js_files = [ |
| 189 "front_end/emulation/devicesSettingsTab.css", | 190 "front_end/emulation/devicesSettingsTab.css", |
| 190 "front_end/emulation/deviceModeToolbar.css", | 191 "front_end/emulation/deviceModeToolbar.css", |
| (...skipping 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1148 deps = [ | 1149 deps = [ |
| 1149 ":frontend_protocol_sources", | 1150 ":frontend_protocol_sources", |
| 1150 ":supported_css_properties", | 1151 ":supported_css_properties", |
| 1151 ] | 1152 ] |
| 1152 sources = generated_scripts | 1153 sources = generated_scripts |
| 1153 outputs = [ | 1154 outputs = [ |
| 1154 "$resources_out_debug_dir/{{source_file_part}}", | 1155 "$resources_out_debug_dir/{{source_file_part}}", |
| 1155 ] | 1156 ] |
| 1156 } | 1157 } |
| 1157 } | 1158 } |
| OLD | NEW |