blob: 2c6b49f568cdffbf12b35bf18bcfff363e7efa9e [file] [log] [blame]
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//third_party/protobuf/proto_library.gni")
static_library("features") {
sources = [
"features.cc",
"features.h",
]
deps = [
"//base:base",
"//components/safe_browsing:buildflags",
]
}
# safe_browsing/ pulls in content/, which doesn't work on iOS.
# TODO(thakis): This should be `safe_browsing_mode != 0`, but chromecast builds
# set safe_browsing_mode to 0 and build chrome/, and chrome/ currently
# unconditionally depends on things in this build file. Make these dependencies
# conditional on safe_browsing_mode != 0 and then change the conditional here.
if (!is_ios) {
assert(!is_ios, "safe_browsing/ pulls in content/ which doesn't work on iOS")
proto_library("csd_proto") {
sources = [
"proto/csd.proto",
]
}
proto_library("webui_proto") {
sources = [
"proto/webui.proto",
]
}
proto_library("realtimeapi_proto") {
sources = [
"proto/realtimeapi.proto",
]
deps = [
":csd_proto",
]
}
proto_library("webprotect_proto") {
sources = [
"proto/webprotect.proto",
]
}
static_library("ping_manager") {
sources = [
"ping_manager.cc",
"ping_manager.h",
]
public_deps = [
"//google_apis:google_apis",
]
deps = [
"//base:base",
"//components/safe_browsing/core/db:hit_report",
"//components/safe_browsing/core/db:util",
"//content/public/browser:browser",
"//net:net",
]
}
source_set("ping_manager_unittest") {
testonly = true
sources = [
"ping_manager_unittest.cc",
]
deps = [
":ping_manager",
"//base:base",
"//components/safe_browsing/core/db:v4_test_util",
"//net:net",
"//net:test_support",
"//testing/gtest",
]
}
source_set("public") {
sources = [
"safe_browsing_service_interface.cc",
"safe_browsing_service_interface.h",
]
deps = [
"//base:base",
"//content/public/browser",
]
}
source_set("verdict_cache_manager") {
sources = [
"verdict_cache_manager.cc",
"verdict_cache_manager.h",
]
deps = [
":csd_proto",
":realtimeapi_proto",
"//base",
"//components/content_settings/core/browser",
"//components/history/core/browser",
"//components/password_manager/core/browser:browser",
"//components/safe_browsing/core/db:v4_protocol_manager_util",
"//content/public/browser",
"//url",
]
}
source_set("verdict_cache_manager_unittest") {
testonly = true
sources = [
"verdict_cache_manager_unittest.cc",
]
deps = [
":csd_proto",
":realtimeapi_proto",
":verdict_cache_manager",
"//base",
"//components/content_settings/core/browser",
"//components/sync_preferences:test_support",
"//content/test:test_support",
"//testing/gtest",
]
}
}