| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 testonly = true | 181 testonly = true |
| 182 sources = [ | 182 sources = [ |
| 183 "answers_cache_unittest.cc", | 183 "answers_cache_unittest.cc", |
| 184 "autocomplete_input_unittest.cc", | 184 "autocomplete_input_unittest.cc", |
| 185 "autocomplete_match_unittest.cc", | 185 "autocomplete_match_unittest.cc", |
| 186 "autocomplete_provider_unittest.cc", | 186 "autocomplete_provider_unittest.cc", |
| 187 "autocomplete_result_unittest.cc", | 187 "autocomplete_result_unittest.cc", |
| 188 "base_search_provider_unittest.cc", | 188 "base_search_provider_unittest.cc", |
| 189 "bookmark_provider_unittest.cc", | 189 "bookmark_provider_unittest.cc", |
| 190 "clipboard_url_provider_unittest.cc", | 190 "clipboard_url_provider_unittest.cc", |
| 191 "history_quick_provider_unittest.cc", |
| 191 "history_url_provider_unittest.cc", | 192 "history_url_provider_unittest.cc", |
| 192 "in_memory_url_index_types_unittest.cc", | 193 "in_memory_url_index_types_unittest.cc", |
| 193 "keyword_provider_unittest.cc", | 194 "keyword_provider_unittest.cc", |
| 194 "omnibox_field_trial_unittest.cc", | 195 "omnibox_field_trial_unittest.cc", |
| 195 "omnibox_popup_model_unittest.cc", | 196 "omnibox_popup_model_unittest.cc", |
| 196 "omnibox_view_unittest.cc", | 197 "omnibox_view_unittest.cc", |
| 197 "scored_history_match_unittest.cc", | 198 "scored_history_match_unittest.cc", |
| 198 "shortcuts_database_unittest.cc", | 199 "shortcuts_database_unittest.cc", |
| 199 "suggestion_answer_unittest.cc", | 200 "suggestion_answer_unittest.cc", |
| 200 "zero_suggest_provider_unittest.cc", | 201 "zero_suggest_provider_unittest.cc", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 216 "//components/variations", | 217 "//components/variations", |
| 217 "//net:test_support", | 218 "//net:test_support", |
| 218 "//sql", | 219 "//sql", |
| 219 "//sql:test_support", | 220 "//sql:test_support", |
| 220 "//testing/gmock", | 221 "//testing/gmock", |
| 221 "//testing/gtest", | 222 "//testing/gtest", |
| 222 "//ui/base", | 223 "//ui/base", |
| 223 "//url", | 224 "//url", |
| 224 ] | 225 ] |
| 225 } | 226 } |
| OLD | NEW |