| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "front_end/sass/SASSSupport.js", | 94 "front_end/sass/SASSSupport.js", |
| 95 "front_end/sass/SASSSourceMapFactory.js", | 95 "front_end/sass/SASSSourceMapFactory.js", |
| 96 ] | 96 ] |
| 97 devtools_screencast_js_files = [ | 97 devtools_screencast_js_files = [ |
| 98 "front_end/screencast/screencastView.css", | 98 "front_end/screencast/screencastView.css", |
| 99 "front_end/screencast/ScreencastApp.js", | 99 "front_end/screencast/ScreencastApp.js", |
| 100 "front_end/screencast/ScreencastView.js", | 100 "front_end/screencast/ScreencastView.js", |
| 101 ] | 101 ] |
| 102 devtools_sdk_js_files = [ | 102 devtools_sdk_js_files = [ |
| 103 "front_end/sdk/ApplicationCacheModel.js", | 103 "front_end/sdk/ApplicationCacheModel.js", |
| 104 "front_end/sdk/Connections.js", |
| 104 "front_end/sdk/ConsoleModel.js", | 105 "front_end/sdk/ConsoleModel.js", |
| 105 "front_end/sdk/ContentProviders.js", | 106 "front_end/sdk/ContentProviders.js", |
| 106 "front_end/sdk/CookieParser.js", | 107 "front_end/sdk/CookieParser.js", |
| 107 "front_end/sdk/CPUProfileDataModel.js", | 108 "front_end/sdk/CPUProfileDataModel.js", |
| 108 "front_end/sdk/CPUProfilerModel.js", | 109 "front_end/sdk/CPUProfilerModel.js", |
| 109 "front_end/sdk/CSSMatchedStyles.js", | 110 "front_end/sdk/CSSMatchedStyles.js", |
| 110 "front_end/sdk/CSSMedia.js", | 111 "front_end/sdk/CSSMedia.js", |
| 111 "front_end/sdk/CSSMetadata.js", | 112 "front_end/sdk/CSSMetadata.js", |
| 112 "front_end/sdk/CSSModel.js", | 113 "front_end/sdk/CSSModel.js", |
| 113 "front_end/sdk/CSSParser.js", | 114 "front_end/sdk/CSSParser.js", |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 "front_end/ui/StaticViewportControl.js", | 289 "front_end/ui/StaticViewportControl.js", |
| 289 "front_end/ui/Widget.js", | 290 "front_end/ui/Widget.js", |
| 290 "front_end/ui/ZoomManager.js", | 291 "front_end/ui/ZoomManager.js", |
| 291 "front_end/ui/treeoutline.js", | 292 "front_end/ui/treeoutline.js", |
| 292 ] | 293 ] |
| 293 devtools_main_js_files = [ | 294 devtools_main_js_files = [ |
| 294 "front_end/main/errorWarningCounter.css", | 295 "front_end/main/errorWarningCounter.css", |
| 295 "front_end/main/remoteDebuggingTerminatedScreen.css", | 296 "front_end/main/remoteDebuggingTerminatedScreen.css", |
| 296 "front_end/main/renderingOptions.css", | 297 "front_end/main/renderingOptions.css", |
| 297 "front_end/main/targetCrashedScreen.css", | 298 "front_end/main/targetCrashedScreen.css", |
| 298 "front_end/main/Connections.js", | |
| 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", | 301 "front_end/main/RemoteLocationManager.js", |
| 302 "front_end/main/RenderingOptions.js", | 302 "front_end/main/RenderingOptions.js", |
| 303 "front_end/main/SimpleApp.js", | 303 "front_end/main/SimpleApp.js", |
| 304 ] | 304 ] |
| 305 devtools_module_json_files = [ | 305 devtools_module_json_files = [ |
| 306 "front_end/accessibility/module.json", | 306 "front_end/accessibility/module.json", |
| 307 "front_end/animation/module.json", | 307 "front_end/animation/module.json", |
| 308 "front_end/audits/module.json", | 308 "front_end/audits/module.json", |
| (...skipping 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 deps = [ | 1146 deps = [ |
| 1147 ":frontend_protocol_sources", | 1147 ":frontend_protocol_sources", |
| 1148 ":supported_css_properties", | 1148 ":supported_css_properties", |
| 1149 ] | 1149 ] |
| 1150 sources = generated_scripts | 1150 sources = generated_scripts |
| 1151 outputs = [ | 1151 outputs = [ |
| 1152 "$resources_out_debug_dir/{{source_file_part}}", | 1152 "$resources_out_debug_dir/{{source_file_part}}", |
| 1153 ] | 1153 ] |
| 1154 } | 1154 } |
| 1155 } | 1155 } |
| OLD | NEW |