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

Side by Side Diff: components/omnibox/browser/BUILD.gn

Issue 1877833002: Optimize shortcuts provider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added new files Created 4 years, 8 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("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 } 9 }
10 10
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "history_url_provider.cc", 43 "history_url_provider.cc",
44 "history_url_provider.h", 44 "history_url_provider.h",
45 "in_memory_url_index.cc", 45 "in_memory_url_index.cc",
46 "in_memory_url_index.h", 46 "in_memory_url_index.h",
47 "in_memory_url_index_types.cc", 47 "in_memory_url_index_types.cc",
48 "in_memory_url_index_types.h", 48 "in_memory_url_index_types.h",
49 "keyword_extensions_delegate.cc", 49 "keyword_extensions_delegate.cc",
50 "keyword_extensions_delegate.h", 50 "keyword_extensions_delegate.h",
51 "keyword_provider.cc", 51 "keyword_provider.cc",
52 "keyword_provider.h", 52 "keyword_provider.h",
53 "match_compare.h",
53 "omnibox_client.h", 54 "omnibox_client.h",
54 "omnibox_controller.cc", 55 "omnibox_controller.cc",
55 "omnibox_controller.h", 56 "omnibox_controller.h",
56 "omnibox_edit_controller.cc", 57 "omnibox_edit_controller.cc",
57 "omnibox_edit_controller.h", 58 "omnibox_edit_controller.h",
58 "omnibox_edit_model.cc", 59 "omnibox_edit_model.cc",
59 "omnibox_edit_model.h", 60 "omnibox_edit_model.h",
60 "omnibox_event_global_tracker.cc", 61 "omnibox_event_global_tracker.cc",
61 "omnibox_event_global_tracker.h", 62 "omnibox_event_global_tracker.h",
62 "omnibox_field_trial.cc", 63 "omnibox_field_trial.cc",
(...skipping 12 matching lines...) Expand all
75 "omnibox_switches.cc", 76 "omnibox_switches.cc",
76 "omnibox_switches.h", 77 "omnibox_switches.h",
77 "omnibox_view.cc", 78 "omnibox_view.cc",
78 "omnibox_view.h", 79 "omnibox_view.h",
79 "scored_history_match.cc", 80 "scored_history_match.cc",
80 "scored_history_match.h", 81 "scored_history_match.h",
81 "search_provider.cc", 82 "search_provider.cc",
82 "search_provider.h", 83 "search_provider.h",
83 "search_suggestion_parser.cc", 84 "search_suggestion_parser.cc",
84 "search_suggestion_parser.h", 85 "search_suggestion_parser.h",
86 "shortcut_match.cc",
87 "shortcut_match.h",
85 "shortcuts_backend.cc", 88 "shortcuts_backend.cc",
86 "shortcuts_backend.h", 89 "shortcuts_backend.h",
87 "shortcuts_constants.cc", 90 "shortcuts_constants.cc",
88 "shortcuts_constants.h", 91 "shortcuts_constants.h",
89 "shortcuts_database.cc", 92 "shortcuts_database.cc",
90 "shortcuts_database.h", 93 "shortcuts_database.h",
91 "shortcuts_provider.cc", 94 "shortcuts_provider.cc",
92 "shortcuts_provider.h", 95 "shortcuts_provider.h",
93 "suggestion_answer.cc", 96 "suggestion_answer.cc",
94 "suggestion_answer.h", 97 "suggestion_answer.h",
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 "history_quick_provider_unittest.cc", 208 "history_quick_provider_unittest.cc",
206 "history_url_provider_unittest.cc", 209 "history_url_provider_unittest.cc",
207 "in_memory_url_index_types_unittest.cc", 210 "in_memory_url_index_types_unittest.cc",
208 "in_memory_url_index_unittest.cc", 211 "in_memory_url_index_unittest.cc",
209 "keyword_provider_unittest.cc", 212 "keyword_provider_unittest.cc",
210 "omnibox_edit_unittest.cc", 213 "omnibox_edit_unittest.cc",
211 "omnibox_field_trial_unittest.cc", 214 "omnibox_field_trial_unittest.cc",
212 "omnibox_popup_model_unittest.cc", 215 "omnibox_popup_model_unittest.cc",
213 "omnibox_view_unittest.cc", 216 "omnibox_view_unittest.cc",
214 "scored_history_match_unittest.cc", 217 "scored_history_match_unittest.cc",
218 "shortcut_match_unittest.cc",
215 "shortcuts_backend_unittest.cc", 219 "shortcuts_backend_unittest.cc",
216 "shortcuts_database_unittest.cc", 220 "shortcuts_database_unittest.cc",
217 "shortcuts_provider_unittest.cc", 221 "shortcuts_provider_unittest.cc",
218 "suggestion_answer_unittest.cc", 222 "suggestion_answer_unittest.cc",
219 "zero_suggest_provider_unittest.cc", 223 "zero_suggest_provider_unittest.cc",
220 ] 224 ]
221 225
222 deps = [ 226 deps = [
223 ":browser", 227 ":browser",
224 ":test_support", 228 ":test_support",
(...skipping 12 matching lines...) Expand all
237 "//components/variations", 241 "//components/variations",
238 "//net:test_support", 242 "//net:test_support",
239 "//sql", 243 "//sql",
240 "//sql:test_support", 244 "//sql:test_support",
241 "//testing/gmock", 245 "//testing/gmock",
242 "//testing/gtest", 246 "//testing/gtest",
243 "//ui/base", 247 "//ui/base",
244 "//url", 248 "//url",
245 ] 249 ]
246 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698