blob: 16629b1a6319c1b1fbc87913995ded5b2278e1ea [file] [log] [blame]
# 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/content/public/cpp",
"//components/password_manager/core/common",
"//components/strings",
"//content/public/common",
"//content/public/renderer",
"//mojo/common:url_type_converters",
"//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",
"//testing/gmock",
"//testing/gtest",
"//third_party/WebKit/public:blink",
]
}