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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
310 'test_support_sync_notifier', | 310 'test_support_sync_notifier', |
311 ], | 311 ], |
312 'direct_dependent_settings': { | 312 'direct_dependent_settings': { |
313 'include_dirs': [ | 313 'include_dirs': [ |
314 '..', | 314 '..', |
315 ], | 315 ], |
316 'conditions': [ | 316 'conditions': [ |
317 ['OS != "android"', { | 317 ['OS != "android"', { |
318 'sources': [ | 318 'sources': [ |
319 'notifier/fake_invalidator_unittest.cc', | 319 'notifier/fake_invalidator_unittest.cc', |
320 'notifier/gcm_network_channel.cc', | |
rlarocque
2014/01/02 18:56:11
Shouldn't this be gcm_network_channel_unittest.cc?
pavely
2014/01/03 00:33:25
Done.
| |
320 'notifier/invalidation_notifier_unittest.cc', | 321 'notifier/invalidation_notifier_unittest.cc', |
321 'notifier/invalidator_registrar_unittest.cc', | 322 'notifier/invalidator_registrar_unittest.cc', |
322 'notifier/non_blocking_invalidator_unittest.cc', | 323 'notifier/non_blocking_invalidator_unittest.cc', |
323 'notifier/object_id_invalidation_map_unittest.cc', | 324 'notifier/object_id_invalidation_map_unittest.cc', |
324 'notifier/p2p_invalidator_unittest.cc', | 325 'notifier/p2p_invalidator_unittest.cc', |
325 'notifier/push_client_channel_unittest.cc', | 326 'notifier/push_client_channel_unittest.cc', |
326 'notifier/registration_manager_unittest.cc', | 327 'notifier/registration_manager_unittest.cc', |
327 'notifier/single_object_invalidation_set_unittest.cc', | 328 'notifier/single_object_invalidation_set_unittest.cc', |
328 'notifier/sync_invalidation_listener_unittest.cc', | 329 'notifier/sync_invalidation_listener_unittest.cc', |
329 'notifier/sync_system_resources_unittest.cc', | 330 'notifier/sync_system_resources_unittest.cc', |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
621 'variables': { | 622 'variables': { |
622 'test_suite_name': 'sync_unit_tests', | 623 'test_suite_name': 'sync_unit_tests', |
623 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', | 624 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', |
624 }, | 625 }, |
625 'includes': [ '../build/apk_test.gypi' ], | 626 'includes': [ '../build/apk_test.gypi' ], |
626 }, | 627 }, |
627 ], | 628 ], |
628 }], | 629 }], |
629 ], | 630 ], |
630 } | 631 } |
OLD | NEW |