Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: components/webdata_services/BUILD.gn

Issue 777863002: Introduce new component webdata_services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile as static_library instead of component Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/webdata_services.gypi ('k') | components/webdata_services/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webdata_services/BUILD.gn
diff --git a/components/webdata_services/BUILD.gn b/components/webdata_services/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..8e83363403b148dec3910005a54da413e0c6e7a0
--- /dev/null
+++ b/components/webdata_services/BUILD.gn
@@ -0,0 +1,38 @@
+# 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("webdata_services") {
+ output_name = "webdata_services"
+
+ sources = [
+ "web_data_service_wrapper.cc",
+ "web_data_service_wrapper.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/autofill/core/browser",
+ "//components/keyed_service/core",
+ "//components/password_manager/core/browser",
+ "//components/search_engines",
+ "//components/signin/core/browser",
+ "//components/webdata/common",
+ "//sql",
+ ]
+}
+
+source_set("test_support") {
+ testonly = true
+ sources = [
+ "web_data_service_test_util.cc",
+ "web_data_service_test_util.h",
+ ]
+
+ deps = [
+ ":webdata_services",
+ "//base",
+ "//components/autofill/core/browser",
+ "//components/signin/core/browser",
+ ]
+}
« no previous file with comments | « components/webdata_services.gypi ('k') | components/webdata_services/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698