| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "//testing/gmock", | 175 "//testing/gmock", |
| 176 ] | 176 ] |
| 177 } | 177 } |
| 178 | 178 |
| 179 source_set("unit_tests") { | 179 source_set("unit_tests") { |
| 180 testonly = true | 180 testonly = true |
| 181 sources = [ | 181 sources = [ |
| 182 "answers_cache_unittest.cc", | 182 "answers_cache_unittest.cc", |
| 183 "autocomplete_input_unittest.cc", | 183 "autocomplete_input_unittest.cc", |
| 184 "autocomplete_match_unittest.cc", | 184 "autocomplete_match_unittest.cc", |
| 185 "autocomplete_provider_unittest.cc", |
| 185 "autocomplete_result_unittest.cc", | 186 "autocomplete_result_unittest.cc", |
| 186 "base_search_provider_unittest.cc", | 187 "base_search_provider_unittest.cc", |
| 187 "clipboard_url_provider_unittest.cc", | 188 "clipboard_url_provider_unittest.cc", |
| 188 "in_memory_url_index_types_unittest.cc", | 189 "in_memory_url_index_types_unittest.cc", |
| 189 "keyword_provider_unittest.cc", | 190 "keyword_provider_unittest.cc", |
| 190 "omnibox_field_trial_unittest.cc", | 191 "omnibox_field_trial_unittest.cc", |
| 191 "omnibox_popup_model_unittest.cc", | 192 "omnibox_popup_model_unittest.cc", |
| 192 "omnibox_view_unittest.cc", | 193 "omnibox_view_unittest.cc", |
| 193 "scored_history_match_unittest.cc", | 194 "scored_history_match_unittest.cc", |
| 194 "suggestion_answer_unittest.cc", | 195 "suggestion_answer_unittest.cc", |
| 195 ] | 196 ] |
| 196 | 197 |
| 197 deps = [ | 198 deps = [ |
| 198 "//base", | 199 "//base", |
| 199 "//components/open_from_clipboard:test_support", | 200 "//components/open_from_clipboard:test_support", |
| 200 "//components/search", | 201 "//components/search", |
| 201 "//components/search_engines", | 202 "//components/search_engines", |
| 202 "//components/variations", | 203 "//components/variations", |
| 203 "//testing/gmock", | 204 "//testing/gmock", |
| 204 "//testing/gtest", | 205 "//testing/gtest", |
| 205 "//url", | 206 "//url", |
| 206 ":browser", | 207 ":browser", |
| 207 ":test_support", | 208 ":test_support", |
| 208 ] | 209 ] |
| 209 } | 210 } |
| OLD | NEW |