OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/sync_driver | 8 # GN version: //components/sync_driver |
9 'target_name': 'sync_driver', | 9 'target_name': 'sync_driver', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'dependencies': [ | 11 'dependencies': [ |
12 '../base/base.gyp:base', | 12 '../base/base.gyp:base', |
13 '../net/net.gyp:net', | 13 '../net/net.gyp:net', |
14 '../sync/sync.gyp:sync', | 14 '../sync/sync.gyp:sync', |
15 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', | 15 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', |
16 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', | 16 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_proto_cpp', |
17 'data_use_measurement_core', | 17 'data_use_measurement_core', |
18 'invalidation_public', | 18 'invalidation_public', |
19 'os_crypt', | 19 'os_crypt', |
20 'signin_core_browser', | 20 'signin_core_browser', |
21 'sync_driver_features', | 21 'sync_driver_features', |
22 'version_info', | 22 'version_info', |
23 ], | 23 ], |
24 'export_dependent_settings': [ | |
sdefresne
2016/02/15 10:02:10
nit: do you need to add //third_party/cacheinvalid
vabr (Chromium)
2016/02/16 08:56:41
Done.
| |
25 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', | |
26 ], | |
24 'include_dirs': [ | 27 'include_dirs': [ |
25 '..', | 28 '..', |
26 ], | 29 ], |
27 'sources': [ | 30 'sources': [ |
28 # Note: file list duplicated in GN build. | 31 # Note: file list duplicated in GN build. |
29 'sync_driver/about_sync_util.cc', | 32 'sync_driver/about_sync_util.cc', |
30 'sync_driver/about_sync_util.h', | 33 'sync_driver/about_sync_util.h', |
31 'sync_driver/backend_data_type_configurer.cc', | 34 'sync_driver/backend_data_type_configurer.cc', |
32 'sync_driver/backend_data_type_configurer.h', | 35 'sync_driver/backend_data_type_configurer.h', |
33 'sync_driver/backend_migrator.cc', | 36 'sync_driver/backend_migrator.cc', |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
211 'sync_driver/model_associator_mock.cc', | 214 'sync_driver/model_associator_mock.cc', |
212 'sync_driver/model_associator_mock.h', | 215 'sync_driver/model_associator_mock.h', |
213 'sync_driver/non_ui_data_type_controller_mock.cc', | 216 'sync_driver/non_ui_data_type_controller_mock.cc', |
214 'sync_driver/non_ui_data_type_controller_mock.h', | 217 'sync_driver/non_ui_data_type_controller_mock.h', |
215 'sync_driver/sync_api_component_factory_mock.cc', | 218 'sync_driver/sync_api_component_factory_mock.cc', |
216 'sync_driver/sync_api_component_factory_mock.h', | 219 'sync_driver/sync_api_component_factory_mock.h', |
217 ], | 220 ], |
218 }, | 221 }, |
219 ], | 222 ], |
220 } | 223 } |
OLD | NEW |