Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / components / password_manager / content / renderer / BUILD.gn
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 static_library("renderer") {
6   sources = [
7     "credential_manager_client.cc",
8     "credential_manager_client.h",
9   ]
10
11   deps = [
12     "//base",
13     "//components/strings",
14     "//ipc",
15     "//third_party/WebKit/public:blink",
16     "//url",
17   ]
18 }
19
20 source_set("browser_tests") {
21   testonly = true
22   sources = [
23     "credential_manager_client_browsertest.cc"
24   ]
25
26   deps = [
27     ":renderer",
28     "//testing/gmock",
29     "//testing/gtest",
30     "//third_party/WebKit/public:blink",
31   ]
32 }
33