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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 "history_quick_provider_unittest.cc", | 194 "history_quick_provider_unittest.cc", |
195 "history_url_provider_unittest.cc", | 195 "history_url_provider_unittest.cc", |
196 "in_memory_url_index_types_unittest.cc", | 196 "in_memory_url_index_types_unittest.cc", |
197 "in_memory_url_index_unittest.cc", | 197 "in_memory_url_index_unittest.cc", |
198 "keyword_provider_unittest.cc", | 198 "keyword_provider_unittest.cc", |
199 "omnibox_edit_unittest.cc", | 199 "omnibox_edit_unittest.cc", |
200 "omnibox_field_trial_unittest.cc", | 200 "omnibox_field_trial_unittest.cc", |
201 "omnibox_popup_model_unittest.cc", | 201 "omnibox_popup_model_unittest.cc", |
202 "omnibox_view_unittest.cc", | 202 "omnibox_view_unittest.cc", |
203 "scored_history_match_unittest.cc", | 203 "scored_history_match_unittest.cc", |
| 204 "shortcuts_backend_unittest.cc", |
204 "shortcuts_database_unittest.cc", | 205 "shortcuts_database_unittest.cc", |
| 206 "shortcuts_provider_unittest.cc", |
205 "suggestion_answer_unittest.cc", | 207 "suggestion_answer_unittest.cc", |
206 "zero_suggest_provider_unittest.cc", | 208 "zero_suggest_provider_unittest.cc", |
207 ] | 209 ] |
208 | 210 |
209 deps = [ | 211 deps = [ |
210 ":browser", | 212 ":browser", |
211 ":test_support", | 213 ":test_support", |
212 "//base", | 214 "//base", |
213 "//base/test:test_support", | 215 "//base/test:test_support", |
214 "//components/bookmarks/browser", | 216 "//components/bookmarks/browser", |
215 "//components/bookmarks/test", | 217 "//components/bookmarks/test", |
216 "//components/history/core/test", | 218 "//components/history/core/test", |
217 "//components/open_from_clipboard:test_support", | 219 "//components/open_from_clipboard:test_support", |
218 "//components/prefs:test_support", | 220 "//components/prefs:test_support", |
219 "//components/search", | 221 "//components/search", |
220 "//components/search_engines", | 222 "//components/search_engines", |
221 "//components/sessions", | 223 "//components/sessions", |
222 "//components/toolbar:test_support", | 224 "//components/toolbar:test_support", |
223 "//components/url_formatter", | 225 "//components/url_formatter", |
224 "//components/variations", | 226 "//components/variations", |
225 "//net:test_support", | 227 "//net:test_support", |
226 "//sql", | 228 "//sql", |
227 "//sql:test_support", | 229 "//sql:test_support", |
228 "//testing/gmock", | 230 "//testing/gmock", |
229 "//testing/gtest", | 231 "//testing/gtest", |
230 "//ui/base", | 232 "//ui/base", |
231 "//url", | 233 "//url", |
232 ] | 234 ] |
233 } | 235 } |
OLD | NEW |