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

Unified Diff: components/webdata/common/BUILD.gn

Issue 366933003: Add //components/webdata/common to the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 5 months 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/autofill/core/browser/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webdata/common/BUILD.gn
diff --git a/components/webdata/common/BUILD.gn b/components/webdata/common/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..12738bbfe132e82595185eca3e5d9c9537cad349
--- /dev/null
+++ b/components/webdata/common/BUILD.gn
@@ -0,0 +1,36 @@
+# 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("common") {
+ output_name = "webdata_common"
+
+ sources = [
+ "web_database.cc",
+ "web_database.h",
+ "web_database_service.cc",
+ "web_database_service.h",
+ "web_database_table.cc",
+ "web_database_table.h",
+ "web_data_request_manager.cc",
+ "web_data_request_manager.h",
+ "web_data_results.h",
+ "web_data_service_backend.cc",
+ "web_data_service_backend.h",
+ "web_data_service_base.cc",
+ "web_data_service_base.h",
+ "web_data_service_consumer.h",
+ "webdata_constants.cc",
+ "webdata_constants.h",
+ "webdata_export.h",
+ ]
+
+ defines = [
+ "WEBDATA_IMPLEMENTATION",
+ ]
+
+ deps = [
+ "//base",
+ "//sql",
+ ]
+}
« no previous file with comments | « components/autofill/core/browser/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698