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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 "front_end/ui/treeoutline.js", | 280 "front_end/ui/treeoutline.js", |
281 ] | 281 ] |
282 devtools_main_js_files = [ | 282 devtools_main_js_files = [ |
283 "front_end/main/errorWarningCounter.css", | 283 "front_end/main/errorWarningCounter.css", |
284 "front_end/main/remoteDebuggingTerminatedScreen.css", | 284 "front_end/main/remoteDebuggingTerminatedScreen.css", |
285 "front_end/main/renderingOptions.css", | 285 "front_end/main/renderingOptions.css", |
286 "front_end/main/targetCrashedScreen.css", | 286 "front_end/main/targetCrashedScreen.css", |
287 "front_end/main/Connections.js", | 287 "front_end/main/Connections.js", |
288 "front_end/main/Main.js", | 288 "front_end/main/Main.js", |
289 "front_end/main/OverlayController.js", | 289 "front_end/main/OverlayController.js", |
| 290 "front_end/main/RemoteLocationManager.js", |
290 "front_end/main/RenderingOptions.js", | 291 "front_end/main/RenderingOptions.js", |
291 "front_end/main/SimpleApp.js", | 292 "front_end/main/SimpleApp.js", |
292 ] | 293 ] |
293 devtools_module_json_files = [ | 294 devtools_module_json_files = [ |
294 "front_end/accessibility/module.json", | 295 "front_end/accessibility/module.json", |
295 "front_end/animation/module.json", | 296 "front_end/animation/module.json", |
296 "front_end/audits/module.json", | 297 "front_end/audits/module.json", |
297 "front_end/bindings/module.json", | 298 "front_end/bindings/module.json", |
298 "front_end/cm_modes/module.json", | 299 "front_end/cm_modes/module.json", |
299 "front_end/common/module.json", | 300 "front_end/common/module.json", |
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1102 deps = [ | 1103 deps = [ |
1103 ":frontend_protocol_sources", | 1104 ":frontend_protocol_sources", |
1104 ":supported_css_properties", | 1105 ":supported_css_properties", |
1105 ] | 1106 ] |
1106 sources = generated_scripts | 1107 sources = generated_scripts |
1107 outputs = [ | 1108 outputs = [ |
1108 "$resources_out_debug_dir/{{source_file_part}}", | 1109 "$resources_out_debug_dir/{{source_file_part}}", |
1109 ] | 1110 ] |
1110 } | 1111 } |
1111 } | 1112 } |
OLD | NEW |