OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 proto_library("safebrowsing_proto") { | 7 proto_library("safebrowsing_proto") { |
8 sources = [ | 8 sources = [ |
9 "safebrowsing.proto", | 9 "safebrowsing.proto", |
10 ] | 10 ] |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 ] | 210 ] |
211 } | 211 } |
212 | 212 |
213 static_library("v4_feature_list") { | 213 static_library("v4_feature_list") { |
214 sources = [ | 214 sources = [ |
215 "v4_feature_list.cc", | 215 "v4_feature_list.cc", |
216 "v4_feature_list.h", | 216 "v4_feature_list.h", |
217 ] | 217 ] |
218 deps = [ | 218 deps = [ |
219 "//base", | 219 "//base", |
| 220 "//components/safe_browsing:features", |
220 ] | 221 ] |
221 } | 222 } |
222 | 223 |
223 static_library("v4_get_hash_protocol_manager") { | 224 static_library("v4_get_hash_protocol_manager") { |
224 sources = [ | 225 sources = [ |
225 "v4_get_hash_protocol_manager.cc", | 226 "v4_get_hash_protocol_manager.cc", |
226 "v4_get_hash_protocol_manager.h", | 227 "v4_get_hash_protocol_manager.h", |
227 ] | 228 ] |
228 public_deps = [ | 229 public_deps = [ |
229 ":safebrowsing_proto", | 230 ":safebrowsing_proto", |
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
527 deps = [ | 528 deps = [ |
528 ":database_manager", | 529 ":database_manager", |
529 ":test_database_manager", | 530 ":test_database_manager", |
530 ":whitelist_checker_client", | 531 ":whitelist_checker_client", |
531 "//base:base", | 532 "//base:base", |
532 "//base/test:test_support", | 533 "//base/test:test_support", |
533 "//testing/gmock:gmock", | 534 "//testing/gmock:gmock", |
534 "//testing/gtest:gtest", | 535 "//testing/gtest:gtest", |
535 ] | 536 ] |
536 } | 537 } |
OLD | NEW |