OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 # Test support files for the 'sync_core' target. | 7 # Test support files for the 'sync_core' target. |
8 # GN version: //components/sync:test_support_sync_core | 8 # GN version: //components/sync:test_support_sync_core |
9 { | 9 { |
10 'target_name': 'test_support_sync_core', | 10 'target_name': 'test_support_sync_core', |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 'api/fake_syncable_service.cc', | 235 'api/fake_syncable_service.cc', |
236 'api/fake_syncable_service.h', | 236 'api/fake_syncable_service.h', |
237 'api/mock_model_type_store.cc', | 237 'api/mock_model_type_store.cc', |
238 'api/mock_model_type_store.h', | 238 'api/mock_model_type_store.h', |
239 'api/sync_change_processor_wrapper_for_test.cc', | 239 'api/sync_change_processor_wrapper_for_test.cc', |
240 'api/sync_change_processor_wrapper_for_test.h', | 240 'api/sync_change_processor_wrapper_for_test.h', |
241 'api/sync_error_factory_mock.cc', | 241 'api/sync_error_factory_mock.cc', |
242 'api/sync_error_factory_mock.h', | 242 'api/sync_error_factory_mock.h', |
243 ], | 243 ], |
244 }, | 244 }, |
| 245 { |
| 246 'target_name': 'test_support_sync_driver', |
| 247 'type': 'static_library', |
| 248 'dependencies': [ |
| 249 'sync', |
| 250 'test_support_sync_core_impl', |
| 251 'components.gyp:version_info', |
| 252 '../base/base.gyp:base', |
| 253 '../testing/gmock.gyp:gmock', |
| 254 '../testing/gtest.gyp:gtest', |
| 255 ], |
| 256 'include_dirs': [ |
| 257 '..', |
| 258 ], |
| 259 'sources': [ |
| 260 'driver/change_processor_mock.cc', |
| 261 'driver/change_processor_mock.h', |
| 262 'driver/data_type_controller_mock.cc', |
| 263 'driver/data_type_controller_mock.h', |
| 264 'driver/data_type_manager_mock.cc', |
| 265 'driver/data_type_manager_mock.h', |
| 266 'driver/fake_data_type_controller.cc', |
| 267 'driver/fake_data_type_controller.h', |
| 268 'driver/fake_generic_change_processor.cc', |
| 269 'driver/fake_generic_change_processor.h', |
| 270 'driver/fake_sync_client.cc', |
| 271 'driver/fake_sync_client.h', |
| 272 'driver/fake_sync_service.cc', |
| 273 'driver/fake_sync_service.h', |
| 274 'driver/frontend_data_type_controller_mock.cc', |
| 275 'driver/frontend_data_type_controller_mock.h', |
| 276 'driver/glue/sync_backend_host_mock.cc', |
| 277 'driver/glue/sync_backend_host_mock.h', |
| 278 'driver/local_device_info_provider_mock.cc', |
| 279 'driver/local_device_info_provider_mock.h', |
| 280 'driver/model_associator_mock.cc', |
| 281 'driver/model_associator_mock.h', |
| 282 'driver/non_ui_data_type_controller_mock.cc', |
| 283 'driver/non_ui_data_type_controller_mock.h', |
| 284 'driver/sync_api_component_factory_mock.cc', |
| 285 'driver/sync_api_component_factory_mock.h', |
| 286 ], |
| 287 }, |
245 ], | 288 ], |
246 'conditions': [ | 289 'conditions': [ |
247 ['OS != "ios"', { | 290 ['OS != "ios"', { |
248 'targets': [ | 291 'targets': [ |
249 # A tool that can be used to launch a python sync server instance. | 292 # A tool that can be used to launch a python sync server instance. |
250 { | 293 { |
251 'target_name': 'run_sync_testserver', | 294 'target_name': 'run_sync_testserver', |
252 'type': 'executable', | 295 'type': 'executable', |
253 'dependencies': [ | 296 'dependencies': [ |
254 '../base/base.gyp:base', | 297 '../base/base.gyp:base', |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 ], | 399 ], |
357 'sources': [ | 400 'sources': [ |
358 'test/fake_server/android/fake_server_helper_android.cc', | 401 'test/fake_server/android/fake_server_helper_android.cc', |
359 'test/fake_server/android/fake_server_helper_android.h', | 402 'test/fake_server/android/fake_server_helper_android.h', |
360 ], | 403 ], |
361 }, | 404 }, |
362 ], | 405 ], |
363 }], | 406 }], |
364 ], | 407 ], |
365 } | 408 } |
OLD | NEW |