| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 public_deps = [ | 79 public_deps = [ |
| 80 "//components/history/core/browser", | 80 "//components/history/core/browser", |
| 81 "//components/metrics/proto", | 81 "//components/metrics/proto", |
| 82 ] | 82 ] |
| 83 deps = [ | 83 deps = [ |
| 84 ":in_memory_url_index_cache_proto", | 84 ":in_memory_url_index_cache_proto", |
| 85 "//base", | 85 "//base", |
| 86 "//base:i18n", | 86 "//base:i18n", |
| 87 "//base:prefs", | |
| 88 "//components/bookmarks/browser", | 87 "//components/bookmarks/browser", |
| 89 "//components/keyed_service/core", | 88 "//components/keyed_service/core", |
| 90 "//components/pref_registry", | 89 "//components/pref_registry", |
| 91 "//components/query_parser", | 90 "//components/query_parser", |
| 92 "//components/resources", | 91 "//components/resources", |
| 93 "//components/search", | 92 "//components/search", |
| 94 "//components/search_engines", | 93 "//components/search_engines", |
| 95 "//components/sessions:shared", | |
| 96 "//components/strings", | 94 "//components/strings", |
| 97 "//components/url_fixer", | 95 "//components/url_fixer", |
| 98 "//components/variations", | 96 "//components/variations", |
| 99 "//components/variations/net", | 97 "//components/variations/net", |
| 100 "//net", | 98 "//net", |
| 101 "//sql", | 99 "//sql", |
| 102 "//third_party/protobuf:protobuf_lite", | 100 "//third_party/protobuf:protobuf_lite", |
| 103 "//ui/base", | 101 "//ui/base", |
| 104 "//url", | 102 "//url", |
| 105 ] | 103 ] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 117 "mock_autocomplete_provider_client.cc", | 115 "mock_autocomplete_provider_client.cc", |
| 118 "mock_autocomplete_provider_client.h", | 116 "mock_autocomplete_provider_client.h", |
| 119 "test_scheme_classifier.cc", | 117 "test_scheme_classifier.cc", |
| 120 "test_scheme_classifier.h", | 118 "test_scheme_classifier.h", |
| 121 ] | 119 ] |
| 122 | 120 |
| 123 deps = [ | 121 deps = [ |
| 124 ":browser", | 122 ":browser", |
| 125 "//base", | 123 "//base", |
| 126 "//components/metrics/proto", | 124 "//components/metrics/proto", |
| 127 "//components/search_engines", | |
| 128 "//net", | |
| 129 "//testing/gmock", | 125 "//testing/gmock", |
| 130 ] | 126 ] |
| 131 } | 127 } |
| 132 | 128 |
| 133 source_set("unit_tests") { | 129 source_set("unit_tests") { |
| 134 testonly = true | 130 testonly = true |
| 135 sources = [ | 131 sources = [ |
| 136 "answers_cache_unittest.cc", | 132 "answers_cache_unittest.cc", |
| 137 "autocomplete_input_unittest.cc", | 133 "autocomplete_input_unittest.cc", |
| 138 "autocomplete_match_unittest.cc", | 134 "autocomplete_match_unittest.cc", |
| 139 "autocomplete_result_unittest.cc", | 135 "autocomplete_result_unittest.cc", |
| 140 "base_search_provider_unittest.cc", | 136 "base_search_provider_unittest.cc", |
| 141 "in_memory_url_index_types_unittest.cc", | 137 "in_memory_url_index_types_unittest.cc", |
| 142 "keyword_provider_unittest.cc", | 138 "keyword_provider_unittest.cc", |
| 143 "omnibox_field_trial_unittest.cc", | 139 "omnibox_field_trial_unittest.cc", |
| 144 "scored_history_match_unittest.cc", | 140 "scored_history_match_unittest.cc", |
| 145 "suggestion_answer_unittest.cc", | 141 "suggestion_answer_unittest.cc", |
| 146 ] | 142 ] |
| 147 | 143 |
| 148 deps = [ | 144 deps = [ |
| 149 ":browser", | 145 ":browser", |
| 150 ":test_support", | 146 ":test_support", |
| 151 "//base", | |
| 152 "//components/search", | |
| 153 "//components/search_engines", | |
| 154 "//components/variations", | |
| 155 "//testing/gmock", | 147 "//testing/gmock", |
| 156 "//testing/gtest", | 148 "//testing/gtest", |
| 157 "//url", | |
| 158 ] | 149 ] |
| 159 } | 150 } |
| OLD | NEW |