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

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

Issue 2203993002: Add a Physical Web omnibox autocomplete provider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: data source changes Created 4 years, 4 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 "omnibox_popup_model.cc", 70 "omnibox_popup_model.cc",
71 "omnibox_popup_model.h", 71 "omnibox_popup_model.h",
72 "omnibox_popup_model_observer.h", 72 "omnibox_popup_model_observer.h",
73 "omnibox_popup_view.h", 73 "omnibox_popup_view.h",
74 "omnibox_pref_names.cc", 74 "omnibox_pref_names.cc",
75 "omnibox_pref_names.h", 75 "omnibox_pref_names.h",
76 "omnibox_switches.cc", 76 "omnibox_switches.cc",
77 "omnibox_switches.h", 77 "omnibox_switches.h",
78 "omnibox_view.cc", 78 "omnibox_view.cc",
79 "omnibox_view.h", 79 "omnibox_view.h",
80 "physical_web_provider.cc",
81 "physical_web_provider.h",
80 "scored_history_match.cc", 82 "scored_history_match.cc",
81 "scored_history_match.h", 83 "scored_history_match.h",
82 "search_provider.cc", 84 "search_provider.cc",
83 "search_provider.h", 85 "search_provider.h",
84 "search_suggestion_parser.cc", 86 "search_suggestion_parser.cc",
85 "search_suggestion_parser.h", 87 "search_suggestion_parser.h",
86 "shortcuts_backend.cc", 88 "shortcuts_backend.cc",
87 "shortcuts_backend.h", 89 "shortcuts_backend.h",
88 "shortcuts_constants.cc", 90 "shortcuts_constants.cc",
89 "shortcuts_constants.h", 91 "shortcuts_constants.h",
(...skipping 20 matching lines...) Expand all
110 ] 112 ]
111 deps = [ 113 deps = [
112 ":in_memory_url_index_cache_proto", 114 ":in_memory_url_index_cache_proto",
113 "//base", 115 "//base",
114 "//base:i18n", 116 "//base:i18n",
115 "//components/bookmarks/browser", 117 "//components/bookmarks/browser",
116 "//components/data_use_measurement/core", 118 "//components/data_use_measurement/core",
117 "//components/keyed_service/core", 119 "//components/keyed_service/core",
118 "//components/metrics", 120 "//components/metrics",
119 "//components/open_from_clipboard", 121 "//components/open_from_clipboard",
122 "//components/physical_web/data_source",
120 "//components/pref_registry", 123 "//components/pref_registry",
121 "//components/prefs", 124 "//components/prefs",
122 "//components/query_parser", 125 "//components/query_parser",
123 "//components/resources", 126 "//components/resources",
124 "//components/search", 127 "//components/search",
125 "//components/search_engines", 128 "//components/search_engines",
126 "//components/sessions", 129 "//components/sessions",
127 "//components/strings", 130 "//components/strings",
128 "//components/toolbar", 131 "//components/toolbar",
129 "//components/url_formatter", 132 "//components/url_formatter",
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 "//components/variations", 258 "//components/variations",
256 "//net:test_support", 259 "//net:test_support",
257 "//sql", 260 "//sql",
258 "//sql:test_support", 261 "//sql:test_support",
259 "//testing/gmock", 262 "//testing/gmock",
260 "//testing/gtest", 263 "//testing/gtest",
261 "//ui/base", 264 "//ui/base",
262 "//url", 265 "//url",
263 ] 266 ]
264 } 267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698