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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 "shortcuts_backend.cc", | 88 "shortcuts_backend.cc", |
89 "shortcuts_backend.h", | 89 "shortcuts_backend.h", |
90 "shortcuts_constants.cc", | 90 "shortcuts_constants.cc", |
91 "shortcuts_constants.h", | 91 "shortcuts_constants.h", |
92 "shortcuts_database.cc", | 92 "shortcuts_database.cc", |
93 "shortcuts_database.h", | 93 "shortcuts_database.h", |
94 "shortcuts_provider.cc", | 94 "shortcuts_provider.cc", |
95 "shortcuts_provider.h", | 95 "shortcuts_provider.h", |
96 "suggestion_answer.cc", | 96 "suggestion_answer.cc", |
97 "suggestion_answer.h", | 97 "suggestion_answer.h", |
| 98 "titled_url_match_utils.cc", |
| 99 "titled_url_match_utils.h", |
98 "url_index_private_data.cc", | 100 "url_index_private_data.cc", |
99 "url_index_private_data.h", | 101 "url_index_private_data.h", |
100 "url_prefix.cc", | 102 "url_prefix.cc", |
101 "url_prefix.h", | 103 "url_prefix.h", |
102 "verbatim_match.cc", | 104 "verbatim_match.cc", |
103 "verbatim_match.h", | 105 "verbatim_match.h", |
104 "zero_suggest_provider.cc", | 106 "zero_suggest_provider.cc", |
105 "zero_suggest_provider.h", | 107 "zero_suggest_provider.h", |
106 ] | 108 ] |
107 | 109 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 "omnibox_edit_unittest.cc", | 238 "omnibox_edit_unittest.cc", |
237 "omnibox_field_trial_unittest.cc", | 239 "omnibox_field_trial_unittest.cc", |
238 "omnibox_popup_model_unittest.cc", | 240 "omnibox_popup_model_unittest.cc", |
239 "omnibox_view_unittest.cc", | 241 "omnibox_view_unittest.cc", |
240 "physical_web_provider_unittest.cc", | 242 "physical_web_provider_unittest.cc", |
241 "scored_history_match_unittest.cc", | 243 "scored_history_match_unittest.cc", |
242 "shortcuts_backend_unittest.cc", | 244 "shortcuts_backend_unittest.cc", |
243 "shortcuts_database_unittest.cc", | 245 "shortcuts_database_unittest.cc", |
244 "shortcuts_provider_unittest.cc", | 246 "shortcuts_provider_unittest.cc", |
245 "suggestion_answer_unittest.cc", | 247 "suggestion_answer_unittest.cc", |
| 248 "titled_url_match_utils_unittest.cc", |
246 "url_prefix_unittest.cc", | 249 "url_prefix_unittest.cc", |
247 "zero_suggest_provider_unittest.cc", | 250 "zero_suggest_provider_unittest.cc", |
248 ] | 251 ] |
249 | 252 |
250 deps = [ | 253 deps = [ |
251 ":browser", | 254 ":browser", |
252 ":test_support", | 255 ":test_support", |
253 ":unit_tests_bundle_data", | 256 ":unit_tests_bundle_data", |
254 "//base", | 257 "//base", |
255 "//components/bookmarks/browser", | 258 "//components/bookmarks/browser", |
(...skipping 12 matching lines...) Expand all Loading... |
268 "//components/variations", | 271 "//components/variations", |
269 "//net:test_support", | 272 "//net:test_support", |
270 "//sql", | 273 "//sql", |
271 "//sql:test_support", | 274 "//sql:test_support", |
272 "//testing/gmock", | 275 "//testing/gmock", |
273 "//testing/gtest", | 276 "//testing/gtest", |
274 "//ui/base:base", | 277 "//ui/base:base", |
275 "//url", | 278 "//url", |
276 ] | 279 ] |
277 } | 280 } |
OLD | NEW |