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

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: Fix component build & gn build 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
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..bcf2ae5d316ef22632b579fd39600f5183a73b5c
--- /dev/null
+++ b/components/webdata_services/BUILD.gn
@@ -0,0 +1,25 @@
+# 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.
+
+component("webdata_services") {
tfarina 2014/12/09 15:48:27 could you run `gn check //components/webdata_servi
jochen (gone - plz use gerrit) 2014/12/09 15:52:28 uh, right, the GN configuration says component and
sdefresne 2014/12/12 16:53:37 Done, and added the missing dependency.
+ output_name = "webdata_services"
+
+ sources = [
+ "web_data_service_wrapper.cc",
+ "web_data_service_wrapper.h",
+ "webdata_services_export.h",
+ ]
+
+ defines = [ "WEBDATA_SERVICES_IMPLEMENTATION" ]
+
+ deps = [
+ "//base",
+ "//components/autofill/core/browser",
+ "//components/password_manager/core/browser",
+ "//components/search_engines",
+ "//components/signin/core/browser",
+ "//components/webdata/common",
+ "//sql",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698