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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 'sync', | 108 'sync', |
109 ], | 109 ], |
110 'export_dependent_settings': [ | 110 'export_dependent_settings': [ |
111 '../testing/gmock.gyp:gmock', | 111 '../testing/gmock.gyp:gmock', |
112 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', | 112 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', |
113 'sync', | 113 'sync', |
114 ], | 114 ], |
115 'sources': [ | 115 'sources': [ |
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', | |
119 'notifier/fake_invalidator.h', | |
120 'notifier/fake_invalidation_handler.cc', | 118 'notifier/fake_invalidation_handler.cc', |
121 'notifier/fake_invalidation_handler.h', | 119 'notifier/fake_invalidation_handler.h', |
122 'notifier/invalidator_test_template.cc', | 120 'notifier/invalidator_test_template.cc', |
123 'notifier/invalidator_test_template.h', | 121 'notifier/invalidator_test_template.h', |
124 'notifier/object_id_invalidation_map_test_util.cc', | 122 'notifier/object_id_invalidation_map_test_util.cc', |
125 'notifier/object_id_invalidation_map_test_util.h', | 123 'notifier/object_id_invalidation_map_test_util.h', |
126 ], | 124 ], |
127 }, | 125 }, |
128 | 126 |
129 # Test support files for the 'sync_internal_api' target. | 127 # Test support files for the 'sync_internal_api' target. |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 '../testing/gtest.gyp:gtest', | 323 '../testing/gtest.gyp:gtest', |
326 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 324 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
327 '../third_party/libjingle/libjingle.gyp:libjingle', | 325 '../third_party/libjingle/libjingle.gyp:libjingle', |
328 'sync', | 326 'sync', |
329 'test_support_sync_notifier', | 327 'test_support_sync_notifier', |
330 ], | 328 ], |
331 'direct_dependent_settings': { | 329 'direct_dependent_settings': { |
332 'include_dirs': [ | 330 'include_dirs': [ |
333 '..', | 331 '..', |
334 ], | 332 ], |
335 'sources': [ | |
336 'notifier/invalidator_factory_unittest.cc', | |
337 ], | |
338 'conditions': [ | 333 'conditions': [ |
339 ['OS != "android"', { | 334 ['OS != "android"', { |
340 'sources': [ | 335 'sources': [ |
341 'notifier/ack_tracker_unittest.cc', | 336 'notifier/ack_tracker_unittest.cc', |
342 'notifier/fake_invalidator_unittest.cc', | |
343 'notifier/invalidation_notifier_unittest.cc', | 337 'notifier/invalidation_notifier_unittest.cc', |
344 'notifier/invalidator_registrar_unittest.cc', | 338 'notifier/invalidator_registrar_unittest.cc', |
345 'notifier/non_blocking_invalidator_unittest.cc', | 339 'notifier/non_blocking_invalidator_unittest.cc', |
346 'notifier/p2p_invalidator_unittest.cc', | 340 'notifier/p2p_invalidator_unittest.cc', |
347 'notifier/push_client_channel_unittest.cc', | 341 'notifier/push_client_channel_unittest.cc', |
348 'notifier/registration_manager_unittest.cc', | 342 'notifier/registration_manager_unittest.cc', |
349 'notifier/sync_invalidation_listener_unittest.cc', | 343 'notifier/sync_invalidation_listener_unittest.cc', |
350 'notifier/sync_system_resources_unittest.cc', | 344 'notifier/sync_system_resources_unittest.cc', |
351 ], | 345 ], |
352 }], | 346 }], |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 'variables': { | 598 'variables': { |
605 'test_suite_name': 'sync_unit_tests', | 599 'test_suite_name': 'sync_unit_tests', |
606 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 600 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
607 }, | 601 }, |
608 'includes': [ '../build/apk_test.gypi' ], | 602 'includes': [ '../build/apk_test.gypi' ], |
609 }, | 603 }, |
610 ], | 604 ], |
611 }], | 605 }], |
612 ], | 606 ], |
613 } | 607 } |
OLD | NEW |