| 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 source_set("browser") { | 7 source_set("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "answers_cache.cc", | 9 "answers_cache.cc", |
| 10 "answers_cache.h", | 10 "answers_cache.h", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 "//testing/gmock", | 159 "//testing/gmock", |
| 160 ] | 160 ] |
| 161 } | 161 } |
| 162 | 162 |
| 163 source_set("unit_tests") { | 163 source_set("unit_tests") { |
| 164 testonly = true | 164 testonly = true |
| 165 sources = [ | 165 sources = [ |
| 166 "answers_cache_unittest.cc", | 166 "answers_cache_unittest.cc", |
| 167 "autocomplete_input_unittest.cc", | 167 "autocomplete_input_unittest.cc", |
| 168 "autocomplete_match_unittest.cc", | 168 "autocomplete_match_unittest.cc", |
| 169 "autocomplete_provider_unittest.cc", |
| 169 "autocomplete_result_unittest.cc", | 170 "autocomplete_result_unittest.cc", |
| 170 "base_search_provider_unittest.cc", | 171 "base_search_provider_unittest.cc", |
| 171 "clipboard_url_provider_unittest.cc", | 172 "clipboard_url_provider_unittest.cc", |
| 172 "in_memory_url_index_types_unittest.cc", | 173 "in_memory_url_index_types_unittest.cc", |
| 173 "keyword_provider_unittest.cc", | 174 "keyword_provider_unittest.cc", |
| 174 "omnibox_field_trial_unittest.cc", | 175 "omnibox_field_trial_unittest.cc", |
| 175 "omnibox_popup_model_unittest.cc", | 176 "omnibox_popup_model_unittest.cc", |
| 176 "omnibox_view_unittest.cc", | 177 "omnibox_view_unittest.cc", |
| 177 "scored_history_match_unittest.cc", | 178 "scored_history_match_unittest.cc", |
| 178 "suggestion_answer_unittest.cc", | 179 "suggestion_answer_unittest.cc", |
| 179 ] | 180 ] |
| 180 | 181 |
| 181 deps = [ | 182 deps = [ |
| 182 "//base", | 183 "//base", |
| 183 "//components/open_from_clipboard:test_support", | 184 "//components/open_from_clipboard:test_support", |
| 184 "//components/search", | 185 "//components/search", |
| 185 "//components/search_engines", | 186 "//components/search_engines", |
| 186 "//components/variations", | 187 "//components/variations", |
| 187 "//testing/gmock", | 188 "//testing/gmock", |
| 188 "//testing/gtest", | 189 "//testing/gtest", |
| 189 "//url", | 190 "//url", |
| 190 ":browser", | 191 ":browser", |
| 191 ":test_support", | 192 ":test_support", |
| 192 ] | 193 ] |
| 193 } | 194 } |
| OLD | NEW |