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

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

Issue 2471243002: DevTools: Consolidate completion code into JavaScriptAutocomplete.js (Closed)
Patch Set: merge Created 4 years, 1 month 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/public/public_features.gni") 6 import("//third_party/WebKit/public/public_features.gni")
7 import("//third_party/WebKit/Source/core/core.gni") 7 import("//third_party/WebKit/Source/core/core.gni")
8 8
9 devtools_embedder_scripts = [ 9 devtools_embedder_scripts = [
10 "front_end/devtools.js", 10 "front_end/devtools.js",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "front_end/components/objectPropertiesSection.css", 61 "front_end/components/objectPropertiesSection.css",
62 "front_end/components/objectValue.css", 62 "front_end/components/objectValue.css",
63 "front_end/components/spectrum.css", 63 "front_end/components/spectrum.css",
64 "front_end/components/CustomPreviewSection.js", 64 "front_end/components/CustomPreviewSection.js",
65 "front_end/components/DataSaverInfobar.js", 65 "front_end/components/DataSaverInfobar.js",
66 "front_end/components/DockController.js", 66 "front_end/components/DockController.js",
67 "front_end/components/DOMBreakpointsSidebarPane.js", 67 "front_end/components/DOMBreakpointsSidebarPane.js",
68 "front_end/components/DOMPresentationUtils.js", 68 "front_end/components/DOMPresentationUtils.js",
69 "front_end/components/ExecutionContextSelector.js", 69 "front_end/components/ExecutionContextSelector.js",
70 "front_end/components/HandlerRegistry.js", 70 "front_end/components/HandlerRegistry.js",
71 "front_end/components/JavaScriptAutocomplete.js",
71 "front_end/components/BreakpointsSidebarPaneBase.js", 72 "front_end/components/BreakpointsSidebarPaneBase.js",
72 "front_end/components/Linkifier.js", 73 "front_end/components/Linkifier.js",
73 "front_end/components/NetworkConditionsSelector.js", 74 "front_end/components/NetworkConditionsSelector.js",
74 "front_end/components/ObjectPopoverHelper.js", 75 "front_end/components/ObjectPopoverHelper.js",
75 "front_end/components/ObjectPropertiesSection.js", 76 "front_end/components/ObjectPropertiesSection.js",
76 "front_end/components/RemoteObjectPreviewFormatter.js", 77 "front_end/components/RemoteObjectPreviewFormatter.js",
77 "front_end/components/RequestAppBannerActionDelegate.js", 78 "front_end/components/RequestAppBannerActionDelegate.js",
78 "front_end/components/ShortcutsScreen.js", 79 "front_end/components/ShortcutsScreen.js",
79 "front_end/components/Spectrum.js", 80 "front_end/components/Spectrum.js",
80 "front_end/components/EventListenersUtils.js", 81 "front_end/components/EventListenersUtils.js",
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 deps = [ 1150 deps = [
1150 ":frontend_protocol_sources", 1151 ":frontend_protocol_sources",
1151 ":supported_css_properties", 1152 ":supported_css_properties",
1152 ] 1153 ]
1153 sources = generated_scripts 1154 sources = generated_scripts
1154 outputs = [ 1155 outputs = [
1155 "$resources_out_debug_dir/{{source_file_part}}", 1156 "$resources_out_debug_dir/{{source_file_part}}",
1156 ] 1157 ]
1157 } 1158 }
1158 } 1159 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698