summaryrefslogtreecommitdiffstats
path: root/components/password_manager/content/common/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'components/password_manager/content/common/BUILD.gn')
-rw-r--r--components/password_manager/content/common/BUILD.gn21
1 files changed, 21 insertions, 0 deletions
diff --git a/components/password_manager/content/common/BUILD.gn b/components/password_manager/content/common/BUILD.gn
new file mode 100644
index 0000000..88d4d12
--- /dev/null
+++ b/components/password_manager/content/common/BUILD.gn
@@ -0,0 +1,21 @@
+# 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("common") {
+ sources = [
+ "credential_manager_message_generator.cc",
+ "credential_manager_message_generator.h",
+ "credential_manager_messages.h",
+ "credential_manager_types.cc",
+ "credential_manager_types.h",
+ ]
+
+ deps = [
+ "//base",
+ "//content/public/common",
+ "//ipc",
+ "//third_party/WebKit/public:blink",
+ "//url",
+ ]
+}