| 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", | |
| 221 ] | 220 ] |
| 222 } | 221 } |
| 223 | 222 |
| 224 static_library("v4_get_hash_protocol_manager") { | 223 static_library("v4_get_hash_protocol_manager") { |
| 225 sources = [ | 224 sources = [ |
| 226 "v4_get_hash_protocol_manager.cc", | 225 "v4_get_hash_protocol_manager.cc", |
| 227 "v4_get_hash_protocol_manager.h", | 226 "v4_get_hash_protocol_manager.h", |
| 228 ] | 227 ] |
| 229 public_deps = [ | 228 public_deps = [ |
| 230 ":safebrowsing_proto", | 229 ":safebrowsing_proto", |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 deps = [ | 527 deps = [ |
| 529 ":database_manager", | 528 ":database_manager", |
| 530 ":test_database_manager", | 529 ":test_database_manager", |
| 531 ":whitelist_checker_client", | 530 ":whitelist_checker_client", |
| 532 "//base:base", | 531 "//base:base", |
| 533 "//base/test:test_support", | 532 "//base/test:test_support", |
| 534 "//testing/gmock:gmock", | 533 "//testing/gmock:gmock", |
| 535 "//testing/gtest:gtest", | 534 "//testing/gtest:gtest", |
| 536 ] | 535 ] |
| 537 } | 536 } |
| OLD | NEW |