| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 "front_end/sdk/Script.js", | 135 "front_end/sdk/Script.js", |
| 136 "front_end/sdk/SecurityOriginManager.js", | 136 "front_end/sdk/SecurityOriginManager.js", |
| 137 "front_end/sdk/ServiceWorkerCacheModel.js", | 137 "front_end/sdk/ServiceWorkerCacheModel.js", |
| 138 "front_end/sdk/ServiceWorkerManager.js", | 138 "front_end/sdk/ServiceWorkerManager.js", |
| 139 "front_end/sdk/SourceMap.js", | 139 "front_end/sdk/SourceMap.js", |
| 140 "front_end/sdk/SubTargetsManager.js", | 140 "front_end/sdk/SubTargetsManager.js", |
| 141 "front_end/sdk/Target.js", | 141 "front_end/sdk/Target.js", |
| 142 "front_end/sdk/TargetManager.js", | 142 "front_end/sdk/TargetManager.js", |
| 143 "front_end/sdk/TracingManager.js", | 143 "front_end/sdk/TracingManager.js", |
| 144 "front_end/sdk/TracingModel.js", | 144 "front_end/sdk/TracingModel.js", |
| 145 "front_end/sdk/WorkerManager.js", | |
| 146 ] | 145 ] |
| 147 devtools_workspace_js_files = [ | 146 devtools_workspace_js_files = [ |
| 148 "front_end/workspace/FileManager.js", | 147 "front_end/workspace/FileManager.js", |
| 149 "front_end/workspace/FileSystemMapping.js", | 148 "front_end/workspace/FileSystemMapping.js", |
| 150 "front_end/workspace/IsolatedFileSystem.js", | 149 "front_end/workspace/IsolatedFileSystem.js", |
| 151 "front_end/workspace/IsolatedFileSystemManager.js", | 150 "front_end/workspace/IsolatedFileSystemManager.js", |
| 152 "front_end/workspace/SearchConfig.js", | 151 "front_end/workspace/SearchConfig.js", |
| 153 "front_end/workspace/UISourceCode.js", | 152 "front_end/workspace/UISourceCode.js", |
| 154 "front_end/workspace/Workspace.js", | 153 "front_end/workspace/Workspace.js", |
| 155 ] | 154 ] |
| (...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1148 deps = [ | 1147 deps = [ |
| 1149 ":frontend_protocol_sources", | 1148 ":frontend_protocol_sources", |
| 1150 ":supported_css_properties", | 1149 ":supported_css_properties", |
| 1151 ] | 1150 ] |
| 1152 sources = generated_scripts | 1151 sources = generated_scripts |
| 1153 outputs = [ | 1152 outputs = [ |
| 1154 "$resources_out_debug_dir/{{source_file_part}}", | 1153 "$resources_out_debug_dir/{{source_file_part}}", |
| 1155 ] | 1154 ] |
| 1156 } | 1155 } |
| 1157 } | 1156 } |
| OLD | NEW |