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