OLD | NEW |
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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 "verbatim_match.h", | 100 "verbatim_match.h", |
101 "zero_suggest_provider.cc", | 101 "zero_suggest_provider.cc", |
102 "zero_suggest_provider.h", | 102 "zero_suggest_provider.h", |
103 ] | 103 ] |
104 | 104 |
105 public_deps = [ | 105 public_deps = [ |
106 "//components/history/core/browser", | 106 "//components/history/core/browser", |
107 "//components/metrics/proto", | 107 "//components/metrics/proto", |
108 ] | 108 ] |
109 deps = [ | 109 deps = [ |
| 110 ":in_memory_url_index_cache_proto", |
110 "//base", | 111 "//base", |
111 "//base:i18n", | 112 "//base:i18n", |
112 "//base:prefs", | 113 "//base:prefs", |
113 "//components/bookmarks/browser", | 114 "//components/bookmarks/browser", |
114 "//components/crash/core/common", # TODO(mpearson): remove once 464926 is f
ixed. | 115 "//components/crash/core/common", # TODO(mpearson): remove once 464926 is f
ixed. |
115 "//components/data_use_measurement/core", | 116 "//components/data_use_measurement/core", |
116 "//components/keyed_service/core", | 117 "//components/keyed_service/core", |
117 "//components/metrics", | 118 "//components/metrics", |
118 "//components/omnibox/common", | 119 "//components/omnibox/common", |
119 "//components/open_from_clipboard", | 120 "//components/open_from_clipboard", |
120 "//components/pref_registry", | 121 "//components/pref_registry", |
121 "//components/query_parser", | 122 "//components/query_parser", |
122 "//components/resources", | 123 "//components/resources", |
123 "//components/search", | 124 "//components/search", |
124 "//components/search_engines", | 125 "//components/search_engines", |
125 "//components/sessions", | 126 "//components/sessions", |
126 "//components/strings", | 127 "//components/strings", |
127 "//components/toolbar", | 128 "//components/toolbar", |
128 "//components/url_formatter", | 129 "//components/url_formatter", |
129 "//components/variations", | 130 "//components/variations", |
130 "//components/variations/net", | 131 "//components/variations/net", |
131 "//net", | 132 "//net", |
132 "//skia", | 133 "//skia", |
133 "//sql", | 134 "//sql", |
134 "//third_party/protobuf:protobuf_lite", | 135 "//third_party/protobuf:protobuf_lite", |
135 "//ui/base", | 136 "//ui/base", |
136 "//ui/gfx", | 137 "//ui/gfx", |
137 "//url", | 138 "//url", |
138 ":in_memory_url_index_cache_proto", | |
139 ] | 139 ] |
140 } | 140 } |
141 | 141 |
142 if (is_android) { | 142 if (is_android) { |
143 # GYP: //component/omnibox.gypi:autocomplete_match_type_java | 143 # GYP: //component/omnibox.gypi:autocomplete_match_type_java |
144 java_cpp_enum("autocomplete_match_type_javagen") { | 144 java_cpp_enum("autocomplete_match_type_javagen") { |
145 sources = [ | 145 sources = [ |
146 "autocomplete_match_type.h", | 146 "autocomplete_match_type.h", |
147 ] | 147 ] |
148 } | 148 } |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 "in_memory_url_index_types_unittest.cc", | 185 "in_memory_url_index_types_unittest.cc", |
186 "keyword_provider_unittest.cc", | 186 "keyword_provider_unittest.cc", |
187 "omnibox_field_trial_unittest.cc", | 187 "omnibox_field_trial_unittest.cc", |
188 "omnibox_popup_model_unittest.cc", | 188 "omnibox_popup_model_unittest.cc", |
189 "omnibox_view_unittest.cc", | 189 "omnibox_view_unittest.cc", |
190 "scored_history_match_unittest.cc", | 190 "scored_history_match_unittest.cc", |
191 "suggestion_answer_unittest.cc", | 191 "suggestion_answer_unittest.cc", |
192 ] | 192 ] |
193 | 193 |
194 deps = [ | 194 deps = [ |
| 195 ":browser", |
| 196 ":test_support", |
195 "//base", | 197 "//base", |
196 "//components/open_from_clipboard:test_support", | 198 "//components/open_from_clipboard:test_support", |
197 "//components/search", | 199 "//components/search", |
198 "//components/search_engines", | 200 "//components/search_engines", |
199 "//components/variations", | 201 "//components/variations", |
200 "//testing/gmock", | 202 "//testing/gmock", |
201 "//testing/gtest", | 203 "//testing/gtest", |
202 "//url", | 204 "//url", |
203 ":browser", | |
204 ":test_support", | |
205 ] | 205 ] |
206 } | 206 } |
OLD | NEW |