blob: 35e8b8e55958c306e4696a3fbcbadeb7b3d23ac0 [file] [log] [blame]
# Copyright 2018 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.
source_set("safe_search_api") {
sources = [
"url_checker.cc",
"url_checker.h",
]
deps = [
"//base",
"//components/google/core/browser",
"//google_apis",
"//net",
"//services/network/public/cpp",
"//url",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"url_checker_unittest.cc",
]
deps = [
":safe_search_api",
"//base",
"//net",
"//net/traffic_annotation:test_support",
"//services/network:test_support",
"//services/network/public/cpp",
"//testing/gmock",
"//testing/gtest",
"//url",
]
}