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 { | 8 { |
9 'target_name': 'test_support_sync_core', | 9 'target_name': 'test_support_sync_core', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 ], | 112 ], |
113 'sources': [ | 113 'sources': [ |
114 'notifier/fake_invalidation_handler.cc', | 114 'notifier/fake_invalidation_handler.cc', |
115 'notifier/fake_invalidation_handler.h', | 115 'notifier/fake_invalidation_handler.h', |
116 'notifier/fake_invalidation_state_tracker.cc', | 116 'notifier/fake_invalidation_state_tracker.cc', |
117 'notifier/fake_invalidation_state_tracker.h', | 117 'notifier/fake_invalidation_state_tracker.h', |
118 'notifier/fake_invalidator.cc', | 118 'notifier/fake_invalidator.cc', |
119 'notifier/fake_invalidator.h', | 119 'notifier/fake_invalidator.h', |
120 'notifier/invalidator_test_template.cc', | 120 'notifier/invalidator_test_template.cc', |
121 'notifier/invalidator_test_template.h', | 121 'notifier/invalidator_test_template.h', |
| 122 'notifier/mock_ack_handler.cc', |
| 123 'notifier/mock_ack_handler.h', |
122 ], | 124 ], |
123 }, | 125 }, |
124 | 126 |
125 # Test support files for the 'sync_internal_api' target. | 127 # Test support files for the 'sync_internal_api' target. |
126 { | 128 { |
127 'target_name': 'test_support_sync_internal_api', | 129 'target_name': 'test_support_sync_internal_api', |
128 'type': 'static_library', | 130 'type': 'static_library', |
129 'variables': { 'enable_wexit_time_destructors': 1, }, | 131 'variables': { 'enable_wexit_time_destructors': 1, }, |
130 'include_dirs': [ | 132 'include_dirs': [ |
131 '..', | 133 '..', |
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 'variables': { | 637 'variables': { |
636 'test_suite_name': 'sync_unit_tests', | 638 'test_suite_name': 'sync_unit_tests', |
637 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 639 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
638 }, | 640 }, |
639 'includes': [ '../build/apk_test.gypi' ], | 641 'includes': [ '../build/apk_test.gypi' ], |
640 }, | 642 }, |
641 ], | 643 ], |
642 }], | 644 }], |
643 ], | 645 ], |
644 } | 646 } |
OLD | NEW |