mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
39 lines
903 B
Plaintext
39 lines
903 B
Plaintext
|
# Copyright 2014 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.
|
||
|
|
||
|
static_library("renderer") {
|
||
|
sources = [
|
||
|
"credential_manager_client.cc",
|
||
|
"credential_manager_client.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//components/password_manager/core/common",
|
||
|
"//components/strings",
|
||
|
"//content/public/common",
|
||
|
"//content/public/renderer",
|
||
|
"//services/service_manager/public/cpp",
|
||
|
"//third_party/WebKit/public:blink",
|
||
|
"//url",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("browser_tests") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"credential_manager_client_browsertest.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":renderer",
|
||
|
"//content/public/renderer",
|
||
|
"//content/test:test_support",
|
||
|
"//services/service_manager/public/cpp",
|
||
|
"//testing/gmock",
|
||
|
"//testing/gtest",
|
||
|
"//third_party/WebKit/public:blink",
|
||
|
]
|
||
|
}
|