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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 '../testing/gmock.gyp:gmock', | 152 '../testing/gmock.gyp:gmock', |
153 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', | 153 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', |
154 'sync', | 154 'sync', |
155 ], | 155 ], |
156 'export_dependent_settings': [ | 156 'export_dependent_settings': [ |
157 '../testing/gmock.gyp:gmock', | 157 '../testing/gmock.gyp:gmock', |
158 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', | 158 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_proto_cpp', |
159 'sync', | 159 'sync', |
160 ], | 160 ], |
161 'sources': [ | 161 'sources': [ |
162 'notifier/fake_invalidation_handler.cc', | |
163 'notifier/fake_invalidation_handler.h', | |
164 'notifier/fake_invalidation_state_tracker.cc', | |
165 'notifier/fake_invalidation_state_tracker.h', | |
166 'notifier/fake_invalidator.cc', | |
167 'notifier/fake_invalidator.h', | |
168 'notifier/invalidator_test_template.cc', | |
169 'notifier/invalidator_test_template.h', | |
170 'notifier/unacked_invalidation_set_test_util.cc', | 162 'notifier/unacked_invalidation_set_test_util.cc', |
171 'notifier/unacked_invalidation_set_test_util.h', | 163 'notifier/unacked_invalidation_set_test_util.h', |
172 'internal_api/public/base/object_id_invalidation_map_test_util.h', | 164 'internal_api/public/base/object_id_invalidation_map_test_util.h', |
173 'internal_api/public/base/object_id_invalidation_map_test_util.cc', | 165 'internal_api/public/base/object_id_invalidation_map_test_util.cc', |
174 ], | 166 ], |
175 }, | 167 }, |
176 | 168 |
177 # Test support files for the 'sync_internal_api' target. | 169 # Test support files for the 'sync_internal_api' target. |
178 { | 170 { |
179 'target_name': 'test_support_sync_internal_api', | 171 'target_name': 'test_support_sync_internal_api', |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 'sync', | 359 'sync', |
368 'test_support_sync_notifier', | 360 'test_support_sync_notifier', |
369 ], | 361 ], |
370 'direct_dependent_settings': { | 362 'direct_dependent_settings': { |
371 'include_dirs': [ | 363 'include_dirs': [ |
372 '..', | 364 '..', |
373 ], | 365 ], |
374 'conditions': [ | 366 'conditions': [ |
375 ['OS != "android"', { | 367 ['OS != "android"', { |
376 'sources': [ | 368 'sources': [ |
377 'notifier/fake_invalidator_unittest.cc', | |
378 'notifier/gcm_network_channel_unittest.cc', | |
379 'notifier/invalidation_notifier_unittest.cc', | |
380 'notifier/invalidator_registrar_unittest.cc', | |
381 'notifier/non_blocking_invalidator_unittest.cc', | |
382 'notifier/object_id_invalidation_map_unittest.cc', | 369 'notifier/object_id_invalidation_map_unittest.cc', |
383 'notifier/p2p_invalidator_unittest.cc', | |
384 'notifier/push_client_channel_unittest.cc', | |
385 'notifier/registration_manager_unittest.cc', | 370 'notifier/registration_manager_unittest.cc', |
386 'notifier/single_object_invalidation_set_unittest.cc', | 371 'notifier/single_object_invalidation_set_unittest.cc', |
387 'notifier/sync_invalidation_listener_unittest.cc', | |
388 'notifier/sync_system_resources_unittest.cc', | |
389 'notifier/unacked_invalidation_set_unittest.cc', | 372 'notifier/unacked_invalidation_set_unittest.cc', |
390 ], | 373 ], |
391 }], | 374 }], |
392 ], | 375 ], |
393 }, | 376 }, |
394 }, | 377 }, |
395 | 378 |
396 # Unit tests for the 'sync_internal_api' target. This cannot be a static | 379 # Unit tests for the 'sync_internal_api' target. This cannot be a static |
397 # library because the unit test files have to be compiled directly | 380 # library because the unit test files have to be compiled directly |
398 # into the executable, so we push the target files to the | 381 # into the executable, so we push the target files to the |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 ], | 611 ], |
629 'variables': { | 612 'variables': { |
630 'test_suite_name': 'sync_unit_tests', | 613 'test_suite_name': 'sync_unit_tests', |
631 }, | 614 }, |
632 'includes': [ '../build/apk_test.gypi' ], | 615 'includes': [ '../build/apk_test.gypi' ], |
633 }, | 616 }, |
634 ], | 617 ], |
635 }], | 618 }], |
636 ], | 619 ], |
637 } | 620 } |
OLD | NEW |