| 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 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 ], | 454 ], |
| 455 'dependencies': [ | 455 'dependencies': [ |
| 456 '../testing/gmock.gyp:gmock', | 456 '../testing/gmock.gyp:gmock', |
| 457 'sync_notifier', | 457 'sync_notifier', |
| 458 ], | 458 ], |
| 459 'export_dependent_settings': [ | 459 'export_dependent_settings': [ |
| 460 '../testing/gmock.gyp:gmock', | 460 '../testing/gmock.gyp:gmock', |
| 461 'sync_notifier', | 461 'sync_notifier', |
| 462 ], | 462 ], |
| 463 'sources': [ | 463 'sources': [ |
| 464 'notifier/mock_invalidation_state_tracker.cc', | 464 'notifier/fake_invalidation_state_tracker.cc', |
| 465 'notifier/mock_invalidation_state_tracker.h', | 465 'notifier/fake_invalidation_state_tracker.h', |
| 466 'notifier/mock_sync_notifier_observer.cc', | 466 'notifier/mock_sync_notifier_observer.cc', |
| 467 'notifier/mock_sync_notifier_observer.h', | 467 'notifier/mock_sync_notifier_observer.h', |
| 468 ], | 468 ], |
| 469 }, | 469 }, |
| 470 | 470 |
| 471 # Test support files for the 'syncapi_core' target. | 471 # Test support files for the 'syncapi_core' target. |
| 472 { | 472 { |
| 473 'target_name': 'test_support_syncapi_core', | 473 'target_name': 'test_support_syncapi_core', |
| 474 'type': 'static_library', | 474 'type': 'static_library', |
| 475 'variables': { 'enable_wexit_time_destructors': 1, }, | 475 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 'test_suite_name': 'sync_unit_tests', | 841 'test_suite_name': 'sync_unit_tests', |
| 842 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 842 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
| 843 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ]
, | 843 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ]
, |
| 844 }, | 844 }, |
| 845 'includes': [ '../build/apk_test.gypi' ], | 845 'includes': [ '../build/apk_test.gypi' ], |
| 846 }, | 846 }, |
| 847 ], | 847 ], |
| 848 }], | 848 }], |
| 849 ], | 849 ], |
| 850 } | 850 } |
| OLD | NEW |