Revert of Fix CapsLock remapping. (patchset #2 id:20001 of https://codereview.chromiu...
[chromium-blink-merge.git] / components / sync_driver.gypi
blob97045925913b3f3602b707d9a74ee89c806121df
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
6   'targets': [
7     {
8       # GN version: //components/sync_driver
9       'target_name': 'sync_driver',
10       'type': 'static_library',
11       'dependencies': [
12         '../base/base.gyp:base',
13         '../sync/sync.gyp:sync',
14         'os_crypt',
15       ],
16       'include_dirs': [
17         '..',
18       ],
19       'sources': [
20         # Note: file list duplicated in GN build.
21         'sync_driver/backend_data_type_configurer.cc',
22         'sync_driver/backend_data_type_configurer.h',
23         'sync_driver/change_processor.cc',
24         'sync_driver/change_processor.h',
25         'sync_driver/data_type_controller.cc',
26         'sync_driver/data_type_controller.h',
27         'sync_driver/data_type_encryption_handler.cc',
28         'sync_driver/data_type_encryption_handler.h',
29         'sync_driver/data_type_error_handler.h',
30         'sync_driver/data_type_manager.cc',
31         'sync_driver/data_type_manager.h',
32         'sync_driver/data_type_manager_impl.cc',
33         'sync_driver/data_type_manager_impl.h',
34         'sync_driver/data_type_manager_observer.h',
35         'sync_driver/data_type_status_table.cc',
36         'sync_driver/data_type_status_table.h',
37         'sync_driver/device_info.cc',
38         'sync_driver/device_info.h',
39         'sync_driver/device_info_data_type_controller.cc',
40         'sync_driver/device_info_data_type_controller.h',
41         'sync_driver/device_info_sync_service.cc',
42         'sync_driver/device_info_sync_service.h',
43         'sync_driver/device_info_tracker.h',
44         'sync_driver/generic_change_processor.cc',
45         'sync_driver/generic_change_processor.h',
46         'sync_driver/generic_change_processor_factory.cc',
47         'sync_driver/generic_change_processor_factory.h',
48         'sync_driver/local_device_info_provider.h',
49         'sync_driver/model_association_manager.cc',
50         'sync_driver/model_association_manager.h',
51         'sync_driver/model_associator.h',
52         'sync_driver/non_blocking_data_type_controller.cc',
53         'sync_driver/non_blocking_data_type_controller.h',
54         'sync_driver/non_blocking_data_type_manager.cc',
55         'sync_driver/non_blocking_data_type_manager.h',
56         'sync_driver/non_ui_data_type_controller.cc',
57         'sync_driver/non_ui_data_type_controller.h',
58         'sync_driver/pref_names.cc',
59         'sync_driver/pref_names.h',
60         'sync_driver/proxy_data_type_controller.cc',
61         'sync_driver/proxy_data_type_controller.h',
62         'sync_driver/shared_change_processor.cc',
63         'sync_driver/shared_change_processor.h',
64         'sync_driver/shared_change_processor_ref.cc',
65         'sync_driver/shared_change_processor_ref.h',
66         'sync_driver/sync_api_component_factory.h',
67         'sync_driver/sync_frontend.cc',
68         'sync_driver/sync_frontend.h',
69         'sync_driver/sync_prefs.cc',
70         'sync_driver/sync_prefs.h',
71         'sync_driver/system_encryptor.cc',
72         'sync_driver/system_encryptor.h',
73         'sync_driver/ui_data_type_controller.cc',
74         'sync_driver/ui_data_type_controller.h',
75         'sync_driver/user_selectable_sync_type.h',
76       ],
77     },
78     {
79       'target_name': 'sync_driver_test_support',
80       'type': 'static_library',
81       'dependencies': [
82         'sync_driver',
83         '../base/base.gyp:base',
84         '../sync/sync.gyp:sync',
85         '../sync/sync.gyp:test_support_sync_internal_api',
86         '../testing/gmock.gyp:gmock',
87         '../testing/gtest.gyp:gtest',
88       ],
89       'include_dirs': [
90         '..',
91       ],
92       'sources': [
93         'sync_driver/change_processor_mock.cc',
94         'sync_driver/change_processor_mock.h',
95         'sync_driver/data_type_controller_mock.cc',
96         'sync_driver/data_type_controller_mock.h',
97         'sync_driver/data_type_error_handler_mock.cc',
98         'sync_driver/data_type_error_handler_mock.h',
99         'sync_driver/data_type_manager_mock.cc',
100         'sync_driver/data_type_manager_mock.h',
101         'sync_driver/fake_data_type_controller.cc',
102         'sync_driver/fake_data_type_controller.h',
103         'sync_driver/fake_generic_change_processor.cc',
104         'sync_driver/fake_generic_change_processor.h',
105         'sync_driver/local_device_info_provider_mock.cc',
106         'sync_driver/local_device_info_provider_mock.h',
107         'sync_driver/model_associator_mock.cc',
108         'sync_driver/model_associator_mock.h',
109         'sync_driver/non_ui_data_type_controller_mock.cc',
110         'sync_driver/non_ui_data_type_controller_mock.h',
111       ],
112     },
113   ],