naiveproxy/components/password_manager/content/renderer/BUILD.gn

39 lines
903 B
Plaintext
Raw Normal View History

2018-01-28 19:30:36 +03:00
# 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",
]
}