OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 # The core sync library. | 10 # The core sync library. |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 'internal_api/public/base_node.h', | 294 'internal_api/public/base_node.h', |
295 'internal_api/public/base_transaction.h', | 295 'internal_api/public/base_transaction.h', |
296 'internal_api/public/change_record.h', | 296 'internal_api/public/change_record.h', |
297 'internal_api/public/configure_reason.h', | 297 'internal_api/public/configure_reason.h', |
298 'internal_api/public/http_bridge.h', | 298 'internal_api/public/http_bridge.h', |
299 'internal_api/public/http_post_provider_factory.h', | 299 'internal_api/public/http_post_provider_factory.h', |
300 'internal_api/public/http_post_provider_interface.h', | 300 'internal_api/public/http_post_provider_interface.h', |
301 'internal_api/public/read_node.h', | 301 'internal_api/public/read_node.h', |
302 'internal_api/public/read_transaction.h', | 302 'internal_api/public/read_transaction.h', |
303 'internal_api/public/sync_manager.h', | 303 'internal_api/public/sync_manager.h', |
| 304 'internal_api/public/sync_manager_factory.h', |
| 305 'internal_api/public/sync_manager_factory.cc', |
304 'internal_api/public/user_share.h', | 306 'internal_api/public/user_share.h', |
305 'internal_api/public/write_node.h', | 307 'internal_api/public/write_node.h', |
306 'internal_api/public/write_transaction.h', | 308 'internal_api/public/write_transaction.h', |
307 'internal_api/base_node.cc', | 309 'internal_api/base_node.cc', |
308 'internal_api/base_transaction.cc', | 310 'internal_api/base_transaction.cc', |
309 'internal_api/change_record.cc', | 311 'internal_api/change_record.cc', |
310 'internal_api/change_reorder_buffer.cc', | 312 'internal_api/change_reorder_buffer.cc', |
311 'internal_api/change_reorder_buffer.h', | 313 'internal_api/change_reorder_buffer.h', |
312 'internal_api/debug_info_event_listener.cc', | 314 'internal_api/debug_info_event_listener.cc', |
313 'internal_api/debug_info_event_listener.h', | 315 'internal_api/debug_info_event_listener.h', |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 '../testing/gtest.gyp:gtest', | 457 '../testing/gtest.gyp:gtest', |
456 'syncapi_core', | 458 'syncapi_core', |
457 'test_support_sync', | 459 'test_support_sync', |
458 ], | 460 ], |
459 'export_dependent_settings': [ | 461 'export_dependent_settings': [ |
460 '../testing/gtest.gyp:gtest', | 462 '../testing/gtest.gyp:gtest', |
461 'syncapi_core', | 463 'syncapi_core', |
462 'test_support_sync', | 464 'test_support_sync', |
463 ], | 465 ], |
464 'sources': [ | 466 'sources': [ |
| 467 'internal_api/public/test/fake_sync_manager.h', |
| 468 'internal_api/public/test/fake_sync_manager.cc', |
465 'internal_api/public/test/test_entry_factory.h', | 469 'internal_api/public/test/test_entry_factory.h', |
466 'internal_api/public/test/test_user_share.h', | 470 'internal_api/public/test/test_user_share.h', |
467 'internal_api/test/test_entry_factory.cc', | 471 'internal_api/test/test_entry_factory.cc', |
468 'internal_api/test/test_user_share.cc', | 472 'internal_api/test/test_user_share.cc', |
469 ], | 473 ], |
470 }, | 474 }, |
471 | 475 |
472 # Test support files for the 'syncapi_service' target. | 476 # Test support files for the 'syncapi_service' target. |
473 { | 477 { |
474 'target_name': 'test_support_syncapi_service', | 478 'target_name': 'test_support_syncapi_service', |
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
807 'test_suite_name': 'sync_unit_tests', | 811 'test_suite_name': 'sync_unit_tests', |
808 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 812 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
809 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ]
, | 813 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ]
, |
810 }, | 814 }, |
811 'includes': [ '../build/apk_test.gypi' ], | 815 'includes': [ '../build/apk_test.gypi' ], |
812 }, | 816 }, |
813 ], | 817 ], |
814 }], | 818 }], |
815 ], | 819 ], |
816 } | 820 } |
OLD | NEW |