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

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

Issue 2385093002: DevTools: introduce Trie data structure (Closed)
Patch Set: address comments 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 25 matching lines...) Expand all
36 "front_end/common/Progress.js", 36 "front_end/common/Progress.js",
37 "front_end/common/ResourceType.js", 37 "front_end/common/ResourceType.js",
38 "front_end/common/SegmentedRange.js", 38 "front_end/common/SegmentedRange.js",
39 "front_end/common/Settings.js", 39 "front_end/common/Settings.js",
40 "front_end/common/StaticContentProvider.js", 40 "front_end/common/StaticContentProvider.js",
41 "front_end/common/Text.js", 41 "front_end/common/Text.js",
42 "front_end/common/TextDictionary.js", 42 "front_end/common/TextDictionary.js",
43 "front_end/common/TextRange.js", 43 "front_end/common/TextRange.js",
44 "front_end/common/TextUtils.js", 44 "front_end/common/TextUtils.js",
45 "front_end/common/Throttler.js", 45 "front_end/common/Throttler.js",
46 "front_end/common/Trie.js",
46 "front_end/common/UIString.js", 47 "front_end/common/UIString.js",
47 "front_end/common/WebInspector.js", 48 "front_end/common/WebInspector.js",
48 "front_end/common/Worker.js", 49 "front_end/common/Worker.js",
49 ] 50 ]
50 devtools_components_js_files = [ 51 devtools_components_js_files = [
51 "front_end/components/breakpointsList.css", 52 "front_end/components/breakpointsList.css",
52 "front_end/components/customPreviewSection.css", 53 "front_end/components/customPreviewSection.css",
53 "front_end/components/domUtils.css", 54 "front_end/components/domUtils.css",
54 "front_end/components/eventListenersView.css", 55 "front_end/components/eventListenersView.css",
55 "front_end/components/networkConditionsSettingsTab.css", 56 "front_end/components/networkConditionsSettingsTab.css",
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after
1124 deps = [ 1125 deps = [
1125 ":frontend_protocol_sources", 1126 ":frontend_protocol_sources",
1126 ":supported_css_properties", 1127 ":supported_css_properties",
1127 ] 1128 ]
1128 sources = generated_scripts 1129 sources = generated_scripts
1129 outputs = [ 1130 outputs = [
1130 "$resources_out_debug_dir/{{source_file_part}}", 1131 "$resources_out_debug_dir/{{source_file_part}}",
1131 ] 1132 ]
1132 } 1133 }
1133 } 1134 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698