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

Unified Diff: components/webdata_services.gypi

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/common/web_data_service_test_util.cc ('k') | components/webdata_services/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webdata_services.gypi
diff --git a/components/webdata_services.gypi b/components/webdata_services.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..c28267bf25bf39fb0fd115def78adc7c60d093a0
--- /dev/null
+++ b/components/webdata_services.gypi
@@ -0,0 +1,48 @@
+# Copyright (c) 2013 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.
+
+{
+ 'targets': [
+ {
+ # GN version: //components/webdata_services
+ 'target_name': 'webdata_services',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../sql/sql.gyp:sql',
+ 'autofill_core_browser',
+ 'keyed_service_core',
+ 'password_manager_core_browser',
+ 'search_engines',
+ 'signin_core_browser',
+ 'webdata_common',
+ ],
+ 'sources': [
+ 'webdata_services/web_data_service_wrapper.cc',
+ 'webdata_services/web_data_service_wrapper.h',
+ ],
+ },
+ {
+ # GN version: //components/webdata_services:test_support
+ 'target_name': 'webdata_services_test_support',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'autofill_core_browser',
+ 'signin_core_browser',
+ 'webdata_services',
+ ],
+ 'sources': [
+ 'webdata_services/web_data_service_test_util.cc',
+ 'webdata_services/web_data_service_test_util.h',
+ ],
+ },
+ ],
+}
« no previous file with comments | « components/webdata/common/web_data_service_test_util.cc ('k') | components/webdata_services/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698