| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 | 152 |
| 153 proto_library("in_memory_url_index_cache_proto") { | 153 proto_library("in_memory_url_index_cache_proto") { |
| 154 sources = [ | 154 sources = [ |
| 155 "in_memory_url_index_cache.proto", | 155 "in_memory_url_index_cache.proto", |
| 156 ] | 156 ] |
| 157 } | 157 } |
| 158 | 158 |
| 159 static_library("test_support") { | 159 static_library("test_support") { |
| 160 testonly = true | 160 testonly = true |
| 161 sources = [ | 161 sources = [ |
| 162 "history_index_restore_observer.cc", |
| 163 "history_index_restore_observer.h", |
| 162 "mock_autocomplete_provider_client.cc", | 164 "mock_autocomplete_provider_client.cc", |
| 163 "mock_autocomplete_provider_client.h", | 165 "mock_autocomplete_provider_client.h", |
| 164 "test_scheme_classifier.cc", | 166 "test_scheme_classifier.cc", |
| 165 "test_scheme_classifier.h", | 167 "test_scheme_classifier.h", |
| 166 ] | 168 ] |
| 167 | 169 |
| 168 deps = [ | 170 deps = [ |
| 169 ":browser", | 171 ":browser", |
| 170 "//base", | 172 "//base", |
| 171 "//components/metrics/proto", | 173 "//components/metrics/proto", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 "//components/variations", | 216 "//components/variations", |
| 215 "//net:test_support", | 217 "//net:test_support", |
| 216 "//sql", | 218 "//sql", |
| 217 "//sql:test_support", | 219 "//sql:test_support", |
| 218 "//testing/gmock", | 220 "//testing/gmock", |
| 219 "//testing/gtest", | 221 "//testing/gtest", |
| 220 "//ui/base", | 222 "//ui/base", |
| 221 "//url", | 223 "//url", |
| 222 ] | 224 ] |
| 223 } | 225 } |
| OLD | NEW |