mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
62 lines
1.9 KiB
Plaintext
62 lines
1.9 KiB
Plaintext
|
# Copyright 2017 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("password_protection") {
|
||
|
if (!is_android && !is_ios) {
|
||
|
sources = [
|
||
|
"password_protection_navigation_throttle.cc",
|
||
|
"password_protection_navigation_throttle.h",
|
||
|
"password_protection_request.cc",
|
||
|
"password_protection_request.h",
|
||
|
"password_protection_service.cc",
|
||
|
"password_protection_service.h",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
"//google_apis:google_apis",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base:base",
|
||
|
"//components/content_settings/core/browser:browser",
|
||
|
"//components/data_use_measurement/core:core",
|
||
|
"//components/history/core/browser:browser",
|
||
|
"//components/password_manager/core/browser:browser",
|
||
|
"//components/safe_browsing:csd_proto",
|
||
|
"//components/safe_browsing:features",
|
||
|
"//components/safe_browsing/db:database_manager",
|
||
|
"//components/safe_browsing/db:v4_protocol_manager_util",
|
||
|
"//components/safe_browsing/db:whitelist_checker_client",
|
||
|
"//content/public/browser:browser",
|
||
|
"//net:net",
|
||
|
"//third_party/protobuf:protobuf_lite",
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
source_set("password_protection_unittest") {
|
||
|
testonly = true
|
||
|
if (!is_android && !is_ios) {
|
||
|
sources = [
|
||
|
"password_protection_service_unittest.cc",
|
||
|
]
|
||
|
deps = [
|
||
|
":password_protection",
|
||
|
"//base",
|
||
|
"//base/test:test_support",
|
||
|
"//components/content_settings/core/browser:browser",
|
||
|
"//components/history/core/browser:browser",
|
||
|
"//components/password_manager/core/browser:browser",
|
||
|
"//components/safe_browsing:features",
|
||
|
"//components/safe_browsing/db:test_database_manager",
|
||
|
"//components/sync_preferences:test_support",
|
||
|
"//content/test:test_support",
|
||
|
"//net:test_support",
|
||
|
"//testing/gmock",
|
||
|
"//testing/gtest",
|
||
|
"//third_party/protobuf:protobuf_lite",
|
||
|
]
|
||
|
}
|
||
|
}
|