| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 "front_end/ui/ZoomManager.js", | 291 "front_end/ui/ZoomManager.js", |
| 292 "front_end/ui/treeoutline.js", | 292 "front_end/ui/treeoutline.js", |
| 293 ] | 293 ] |
| 294 devtools_main_js_files = [ | 294 devtools_main_js_files = [ |
| 295 "front_end/main/errorWarningCounter.css", | 295 "front_end/main/errorWarningCounter.css", |
| 296 "front_end/main/remoteDebuggingTerminatedScreen.css", | 296 "front_end/main/remoteDebuggingTerminatedScreen.css", |
| 297 "front_end/main/renderingOptions.css", | 297 "front_end/main/renderingOptions.css", |
| 298 "front_end/main/targetCrashedScreen.css", | 298 "front_end/main/targetCrashedScreen.css", |
| 299 "front_end/main/Main.js", | 299 "front_end/main/Main.js", |
| 300 "front_end/main/OverlayController.js", | 300 "front_end/main/OverlayController.js", |
| 301 "front_end/main/RemoteLocationManager.js", | |
| 302 "front_end/main/RenderingOptions.js", | 301 "front_end/main/RenderingOptions.js", |
| 303 "front_end/main/SimpleApp.js", | 302 "front_end/main/SimpleApp.js", |
| 304 ] | 303 ] |
| 305 devtools_module_json_files = [ | 304 devtools_module_json_files = [ |
| 306 "front_end/accessibility/module.json", | 305 "front_end/accessibility/module.json", |
| 307 "front_end/animation/module.json", | 306 "front_end/animation/module.json", |
| 308 "front_end/audits/module.json", | 307 "front_end/audits/module.json", |
| 309 "front_end/audits2/module.json", | 308 "front_end/audits2/module.json", |
| 310 "front_end/audits2_worker/module.json", | 309 "front_end/audits2_worker/module.json", |
| 311 "front_end/bindings/module.json", | 310 "front_end/bindings/module.json", |
| (...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1147 deps = [ | 1146 deps = [ |
| 1148 ":frontend_protocol_sources", | 1147 ":frontend_protocol_sources", |
| 1149 ":supported_css_properties", | 1148 ":supported_css_properties", |
| 1150 ] | 1149 ] |
| 1151 sources = generated_scripts | 1150 sources = generated_scripts |
| 1152 outputs = [ | 1151 outputs = [ |
| 1153 "$resources_out_debug_dir/{{source_file_part}}", | 1152 "$resources_out_debug_dir/{{source_file_part}}", |
| 1154 ] | 1153 ] |
| 1155 } | 1154 } |
| 1156 } | 1155 } |
| OLD | NEW |