| 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 static_library("omnibox") { | 7 static_library("omnibox") { |
| 8 sources = [ | 8 sources = [ |
| 9 "answers_cache.cc", | 9 "answers_cache.cc", |
| 10 "answers_cache.h", | 10 "answers_cache.h", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 testonly = true | 128 testonly = true |
| 129 sources = [ | 129 sources = [ |
| 130 "answers_cache_unittest.cc", | 130 "answers_cache_unittest.cc", |
| 131 "autocomplete_input_unittest.cc", | 131 "autocomplete_input_unittest.cc", |
| 132 "autocomplete_match_unittest.cc", | 132 "autocomplete_match_unittest.cc", |
| 133 "autocomplete_result_unittest.cc", | 133 "autocomplete_result_unittest.cc", |
| 134 "base_search_provider_unittest.cc", | 134 "base_search_provider_unittest.cc", |
| 135 "in_memory_url_index_types_unittest.cc", | 135 "in_memory_url_index_types_unittest.cc", |
| 136 "keyword_provider_unittest.cc", | 136 "keyword_provider_unittest.cc", |
| 137 "omnibox_field_trial_unittest.cc", | 137 "omnibox_field_trial_unittest.cc", |
| 138 "scored_history_match_unittest.cc", |
| 138 "suggestion_answer_unittest.cc", | 139 "suggestion_answer_unittest.cc", |
| 139 ] | 140 ] |
| 140 | 141 |
| 141 deps = [ | 142 deps = [ |
| 142 ":omnibox", | 143 ":omnibox", |
| 143 ":test_support", | 144 ":test_support", |
| 144 "//testing/gmock", | 145 "//testing/gmock", |
| 145 "//testing/gtest", | 146 "//testing/gtest", |
| 146 ] | 147 ] |
| 147 } | 148 } |
| OLD | NEW |