Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: third_party/WebKit/Source/devtools/BUILD.gn

Issue 2371393002: DevTools: Add lightweight StaticViewportControl (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 "front_end/ui/SwatchPopoverHelper.js", 269 "front_end/ui/SwatchPopoverHelper.js",
270 "front_end/ui/Toolbar.js", 270 "front_end/ui/Toolbar.js",
271 "front_end/ui/Tooltip.js", 271 "front_end/ui/Tooltip.js",
272 "front_end/ui/SuggestBox.js", 272 "front_end/ui/SuggestBox.js",
273 "front_end/ui/TabbedPane.js", 273 "front_end/ui/TabbedPane.js",
274 "front_end/ui/TextPrompt.js", 274 "front_end/ui/TextPrompt.js",
275 "front_end/ui/ThrottledWidget.js", 275 "front_end/ui/ThrottledWidget.js",
276 "front_end/ui/UIUtils.js", 276 "front_end/ui/UIUtils.js",
277 "front_end/ui/View.js", 277 "front_end/ui/View.js",
278 "front_end/ui/ViewportControl.js", 278 "front_end/ui/ViewportControl.js",
279 "front_end/ui/StaticViewportControl.js",
279 "front_end/ui/Widget.js", 280 "front_end/ui/Widget.js",
280 "front_end/ui/ZoomManager.js", 281 "front_end/ui/ZoomManager.js",
281 "front_end/ui/treeoutline.js", 282 "front_end/ui/treeoutline.js",
282 ] 283 ]
283 devtools_main_js_files = [ 284 devtools_main_js_files = [
284 "front_end/main/errorWarningCounter.css", 285 "front_end/main/errorWarningCounter.css",
285 "front_end/main/remoteDebuggingTerminatedScreen.css", 286 "front_end/main/remoteDebuggingTerminatedScreen.css",
286 "front_end/main/renderingOptions.css", 287 "front_end/main/renderingOptions.css",
287 "front_end/main/targetCrashedScreen.css", 288 "front_end/main/targetCrashedScreen.css",
288 "front_end/main/Connections.js", 289 "front_end/main/Connections.js",
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
1112 deps = [ 1113 deps = [
1113 ":frontend_protocol_sources", 1114 ":frontend_protocol_sources",
1114 ":supported_css_properties", 1115 ":supported_css_properties",
1115 ] 1116 ]
1116 sources = generated_scripts 1117 sources = generated_scripts
1117 outputs = [ 1118 outputs = [
1118 "$resources_out_debug_dir/{{source_file_part}}", 1119 "$resources_out_debug_dir/{{source_file_part}}",
1119 ] 1120 ]
1120 } 1121 }
1121 } 1122 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698