Suppress tabs permission warning if there is already a browsingHistory warning.
[chromium-blink-merge.git] / components / sync_driver.gypi
blob28a3b3d9f1dc8194578ae10b02c7951da715227a
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       'target_name': 'sync_driver',
9       'type': 'static_library',
10       'dependencies': [
11         '../base/base.gyp:base',
12         '../sync/sync.gyp:sync',
13         'os_crypt',
14       ],
15       'include_dirs': [
16         '..',
17       ],
18       'sources': [
19         'sync_driver/backend_data_type_configurer.cc',
20         'sync_driver/backend_data_type_configurer.h',
21         'sync_driver/data_type_controller.cc',
22         'sync_driver/data_type_controller.h',
23         'sync_driver/data_type_encryption_handler.cc',
24         'sync_driver/data_type_encryption_handler.h',
25         'sync_driver/data_type_error_handler.h',
26         'sync_driver/data_type_manager.cc',
27         'sync_driver/data_type_manager.h',
28         'sync_driver/data_type_manager_observer.h',
29         'sync_driver/failed_data_types_handler.cc',
30         'sync_driver/failed_data_types_handler.h',
31         'sync_driver/model_association_manager.cc',
32         'sync_driver/model_association_manager.h',
33         'sync_driver/model_associator.h',
34         'sync_driver/pref_names.cc',
35         'sync_driver/pref_names.h',
36         'sync_driver/proxy_data_type_controller.cc',
37         'sync_driver/proxy_data_type_controller.h',
38         'sync_driver/sync_frontend.cc',
39         'sync_driver/sync_frontend.h',
40         'sync_driver/sync_prefs.cc',
41         'sync_driver/sync_prefs.h',
42         'sync_driver/system_encryptor.cc',
43         'sync_driver/system_encryptor.h',
44         'sync_driver/user_selectable_sync_type.h',
45       ],
46     },
47     {
48       'target_name': 'sync_driver_test_support',
49       'type': 'static_library',
50       'dependencies': [
51         'sync_driver',
52         '../base/base.gyp:base',
53         '../sync/sync.gyp:sync',
54         '../testing/gmock.gyp:gmock',
55         '../testing/gtest.gyp:gtest',
56       ],
57       'include_dirs': [
58         '..',
59       ],
60       'sources': [
61         'sync_driver/data_type_controller_mock.cc',
62         'sync_driver/data_type_controller_mock.h',
63         'sync_driver/data_type_error_handler_mock.cc',
64         'sync_driver/data_type_error_handler_mock.h',
65         'sync_driver/data_type_manager_mock.cc',
66         'sync_driver/data_type_manager_mock.h',
67         'sync_driver/fake_data_type_controller.cc',
68         'sync_driver/fake_data_type_controller.h',
69         'sync_driver/model_associator_mock.cc',
70         'sync_driver/model_associator_mock.h',
71       ],
72     },
73   ],