Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Side by Side Diff: sync/sync_tests.gypi

Issue 308413002: Revert of Move some sync/notifier to components/invalidation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/sync_notifier.gypi ('k') | sync/tools/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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',
162 'notifier/unacked_invalidation_set_test_util.cc', 170 'notifier/unacked_invalidation_set_test_util.cc',
163 'notifier/unacked_invalidation_set_test_util.h', 171 'notifier/unacked_invalidation_set_test_util.h',
164 'internal_api/public/base/object_id_invalidation_map_test_util.h', 172 'internal_api/public/base/object_id_invalidation_map_test_util.h',
165 'internal_api/public/base/object_id_invalidation_map_test_util.cc', 173 'internal_api/public/base/object_id_invalidation_map_test_util.cc',
166 ], 174 ],
167 }, 175 },
168 176
169 # Test support files for the 'sync_internal_api' target. 177 # Test support files for the 'sync_internal_api' target.
170 { 178 {
171 'target_name': 'test_support_sync_internal_api', 179 'target_name': 'test_support_sync_internal_api',
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 'sync', 367 'sync',
360 'test_support_sync_notifier', 368 'test_support_sync_notifier',
361 ], 369 ],
362 'direct_dependent_settings': { 370 'direct_dependent_settings': {
363 'include_dirs': [ 371 'include_dirs': [
364 '..', 372 '..',
365 ], 373 ],
366 'conditions': [ 374 'conditions': [
367 ['OS != "android"', { 375 ['OS != "android"', {
368 'sources': [ 376 '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',
369 'notifier/object_id_invalidation_map_unittest.cc', 382 'notifier/object_id_invalidation_map_unittest.cc',
383 'notifier/p2p_invalidator_unittest.cc',
384 'notifier/push_client_channel_unittest.cc',
370 'notifier/registration_manager_unittest.cc', 385 'notifier/registration_manager_unittest.cc',
371 'notifier/single_object_invalidation_set_unittest.cc', 386 'notifier/single_object_invalidation_set_unittest.cc',
387 'notifier/sync_invalidation_listener_unittest.cc',
388 'notifier/sync_system_resources_unittest.cc',
372 'notifier/unacked_invalidation_set_unittest.cc', 389 'notifier/unacked_invalidation_set_unittest.cc',
373 ], 390 ],
374 }], 391 }],
375 ], 392 ],
376 }, 393 },
377 }, 394 },
378 395
379 # Unit tests for the 'sync_internal_api' target. This cannot be a static 396 # Unit tests for the 'sync_internal_api' target. This cannot be a static
380 # library because the unit test files have to be compiled directly 397 # library because the unit test files have to be compiled directly
381 # into the executable, so we push the target files to the 398 # into the executable, so we push the target files to the
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 ], 628 ],
612 'variables': { 629 'variables': {
613 'test_suite_name': 'sync_unit_tests', 630 'test_suite_name': 'sync_unit_tests',
614 }, 631 },
615 'includes': [ '../build/apk_test.gypi' ], 632 'includes': [ '../build/apk_test.gypi' ],
616 }, 633 },
617 ], 634 ],
618 }], 635 }],
619 ], 636 ],
620 } 637 }
OLDNEW
« no previous file with comments | « sync/sync_notifier.gypi ('k') | sync/tools/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698