| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 '../testing/gtest.gyp:gtest', | 324 '../testing/gtest.gyp:gtest', |
| 325 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 325 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
| 326 '../third_party/libjingle/libjingle.gyp:libjingle', | 326 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 327 'sync', | 327 'sync', |
| 328 'test_support_sync_notifier', | 328 'test_support_sync_notifier', |
| 329 ], | 329 ], |
| 330 'direct_dependent_settings': { | 330 'direct_dependent_settings': { |
| 331 'include_dirs': [ | 331 'include_dirs': [ |
| 332 '..', | 332 '..', |
| 333 ], | 333 ], |
| 334 'sources': [ | |
| 335 'notifier/invalidator_factory_unittest.cc', | |
| 336 ], | |
| 337 'conditions': [ | 334 'conditions': [ |
| 338 ['OS != "android"', { | 335 ['OS != "android"', { |
| 339 'sources': [ | 336 'sources': [ |
| 340 'notifier/ack_tracker_unittest.cc', | 337 'notifier/ack_tracker_unittest.cc', |
| 341 'notifier/fake_invalidator_unittest.cc', | 338 'notifier/fake_invalidator_unittest.cc', |
| 342 'notifier/invalidation_notifier_unittest.cc', | 339 'notifier/invalidation_notifier_unittest.cc', |
| 343 'notifier/invalidator_registrar_unittest.cc', | 340 'notifier/invalidator_registrar_unittest.cc', |
| 344 'notifier/non_blocking_invalidator_unittest.cc', | 341 'notifier/non_blocking_invalidator_unittest.cc', |
| 345 'notifier/p2p_invalidator_unittest.cc', | 342 'notifier/p2p_invalidator_unittest.cc', |
| 346 'notifier/push_client_channel_unittest.cc', | 343 'notifier/push_client_channel_unittest.cc', |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 641 'variables': { | 638 'variables': { |
| 642 'test_suite_name': 'sync_unit_tests', | 639 'test_suite_name': 'sync_unit_tests', |
| 643 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 640 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
| 644 }, | 641 }, |
| 645 'includes': [ '../build/apk_test.gypi' ], | 642 'includes': [ '../build/apk_test.gypi' ], |
| 646 }, | 643 }, |
| 647 ], | 644 ], |
| 648 }], | 645 }], |
| 649 ], | 646 ], |
| 650 } | 647 } |
| OLD | NEW |