summaryrefslogtreecommitdiffstats
path: root/chromium/components/sync_driver.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/sync_driver.gypi')
-rw-r--r--chromium/components/sync_driver.gypi102
1 files changed, 102 insertions, 0 deletions
diff --git a/chromium/components/sync_driver.gypi b/chromium/components/sync_driver.gypi
new file mode 100644
index 00000000000..e36663e81a3
--- /dev/null
+++ b/chromium/components/sync_driver.gypi
@@ -0,0 +1,102 @@
+# 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'sync_driver',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../sync/sync.gyp:sync',
+ 'os_crypt',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'sync_driver/backend_data_type_configurer.cc',
+ 'sync_driver/backend_data_type_configurer.h',
+ 'sync_driver/change_processor.cc',
+ 'sync_driver/change_processor.h',
+ 'sync_driver/data_type_controller.cc',
+ 'sync_driver/data_type_controller.h',
+ 'sync_driver/data_type_encryption_handler.cc',
+ 'sync_driver/data_type_encryption_handler.h',
+ 'sync_driver/data_type_error_handler.h',
+ 'sync_driver/data_type_manager.cc',
+ 'sync_driver/data_type_manager.h',
+ 'sync_driver/data_type_manager_impl.cc',
+ 'sync_driver/data_type_manager_impl.h',
+ 'sync_driver/data_type_manager_observer.h',
+ 'sync_driver/failed_data_types_handler.cc',
+ 'sync_driver/failed_data_types_handler.h',
+ 'sync_driver/generic_change_processor.cc',
+ 'sync_driver/generic_change_processor.h',
+ 'sync_driver/generic_change_processor_factory.cc',
+ 'sync_driver/generic_change_processor_factory.h',
+ 'sync_driver/model_association_manager.cc',
+ 'sync_driver/model_association_manager.h',
+ 'sync_driver/model_associator.h',
+ 'sync_driver/non_blocking_data_type_controller.cc',
+ 'sync_driver/non_blocking_data_type_controller.h',
+ 'sync_driver/non_blocking_data_type_manager.cc',
+ 'sync_driver/non_blocking_data_type_manager.h',
+ 'sync_driver/non_ui_data_type_controller.cc',
+ 'sync_driver/non_ui_data_type_controller.h',
+ 'sync_driver/pref_names.cc',
+ 'sync_driver/pref_names.h',
+ 'sync_driver/proxy_data_type_controller.cc',
+ 'sync_driver/proxy_data_type_controller.h',
+ 'sync_driver/sync_api_component_factory.h',
+ 'sync_driver/shared_change_processor.cc',
+ 'sync_driver/shared_change_processor.h',
+ 'sync_driver/shared_change_processor_ref.cc',
+ 'sync_driver/shared_change_processor_ref.h',
+ 'sync_driver/sync_frontend.cc',
+ 'sync_driver/sync_frontend.h',
+ 'sync_driver/sync_prefs.cc',
+ 'sync_driver/sync_prefs.h',
+ 'sync_driver/system_encryptor.cc',
+ 'sync_driver/system_encryptor.h',
+ 'sync_driver/ui_data_type_controller.cc',
+ 'sync_driver/ui_data_type_controller.h',
+ 'sync_driver/user_selectable_sync_type.h',
+ ],
+ },
+ {
+ 'target_name': 'sync_driver_test_support',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'sync_driver',
+ '../base/base.gyp:base',
+ '../sync/sync.gyp:sync',
+ '../sync/sync.gyp:test_support_sync_internal_api',
+ '../testing/gmock.gyp:gmock',
+ '../testing/gtest.gyp:gtest',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'sync_driver/change_processor_mock.cc',
+ 'sync_driver/change_processor_mock.h',
+ 'sync_driver/data_type_controller_mock.cc',
+ 'sync_driver/data_type_controller_mock.h',
+ 'sync_driver/data_type_error_handler_mock.cc',
+ 'sync_driver/data_type_error_handler_mock.h',
+ 'sync_driver/data_type_manager_mock.cc',
+ 'sync_driver/data_type_manager_mock.h',
+ 'sync_driver/fake_data_type_controller.cc',
+ 'sync_driver/fake_data_type_controller.h',
+ 'sync_driver/fake_generic_change_processor.cc',
+ 'sync_driver/fake_generic_change_processor.h',
+ 'sync_driver/model_associator_mock.cc',
+ 'sync_driver/model_associator_mock.h',
+ 'sync_driver/non_ui_data_type_controller_mock.cc',
+ 'sync_driver/non_ui_data_type_controller_mock.h',
+ ],
+ },
+ ],
+}