| 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 '../components/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 'metrics', | 19 'metrics', |
| 20 'os_crypt', | 20 'os_crypt', |
| 21 'signin_core_browser', | 21 'signin_core_browser', |
| 22 'version_info', | 22 'version_info', |
| 23 ], | 23 ], |
| 24 'export_dependent_settings': [ | 24 'export_dependent_settings': [ |
| 25 '../sync/sync.gyp:sync', | 25 '../components/sync.gyp:sync', |
| 26 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 26 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
| 27 ], | 27 ], |
| 28 'include_dirs': [ | 28 'include_dirs': [ |
| 29 '..', | 29 '..', |
| 30 ], | 30 ], |
| 31 'sources': [ | 31 'sources': [ |
| 32 # Note: file list duplicated in GN build. | 32 # Note: file list duplicated in GN build. |
| 33 'sync_driver/about_sync_util.cc', | 33 'sync_driver/about_sync_util.cc', |
| 34 'sync_driver/about_sync_util.h', | 34 'sync_driver/about_sync_util.h', |
| 35 'sync_driver/backend_data_type_configurer.cc', | 35 'sync_driver/backend_data_type_configurer.cc', |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 }], | 159 }], |
| 160 ], | 160 ], |
| 161 }, | 161 }, |
| 162 { | 162 { |
| 163 'target_name': 'sync_driver_test_support', | 163 'target_name': 'sync_driver_test_support', |
| 164 'type': 'static_library', | 164 'type': 'static_library', |
| 165 'dependencies': [ | 165 'dependencies': [ |
| 166 'sync_driver', | 166 'sync_driver', |
| 167 'version_info', | 167 'version_info', |
| 168 '../base/base.gyp:base', | 168 '../base/base.gyp:base', |
| 169 '../sync/sync.gyp:sync', | 169 '../components/sync.gyp:sync', |
| 170 '../sync/sync.gyp:test_support_sync_internal_api', | 170 '../components/sync.gyp:test_support_sync_core_impl', |
| 171 '../testing/gmock.gyp:gmock', | 171 '../testing/gmock.gyp:gmock', |
| 172 '../testing/gtest.gyp:gtest', | 172 '../testing/gtest.gyp:gtest', |
| 173 ], | 173 ], |
| 174 'include_dirs': [ | 174 'include_dirs': [ |
| 175 '..', | 175 '..', |
| 176 ], | 176 ], |
| 177 'sources': [ | 177 'sources': [ |
| 178 'sync_driver/change_processor_mock.cc', | 178 'sync_driver/change_processor_mock.cc', |
| 179 'sync_driver/change_processor_mock.h', | 179 'sync_driver/change_processor_mock.h', |
| 180 'sync_driver/data_type_controller_mock.cc', | 180 'sync_driver/data_type_controller_mock.cc', |
| (...skipping 17 matching lines...) Expand all Loading... |
| 198 'sync_driver/model_associator_mock.cc', | 198 'sync_driver/model_associator_mock.cc', |
| 199 'sync_driver/model_associator_mock.h', | 199 'sync_driver/model_associator_mock.h', |
| 200 'sync_driver/non_ui_data_type_controller_mock.cc', | 200 'sync_driver/non_ui_data_type_controller_mock.cc', |
| 201 'sync_driver/non_ui_data_type_controller_mock.h', | 201 'sync_driver/non_ui_data_type_controller_mock.h', |
| 202 'sync_driver/sync_api_component_factory_mock.cc', | 202 'sync_driver/sync_api_component_factory_mock.cc', |
| 203 'sync_driver/sync_api_component_factory_mock.h', | 203 'sync_driver/sync_api_component_factory_mock.h', |
| 204 ], | 204 ], |
| 205 }, | 205 }, |
| 206 ], | 206 ], |
| 207 } | 207 } |
| OLD | NEW |