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

Side by Side Diff: sync/sync_tests.gypi

Issue 294123004: Move some sync/notifier to components/invalidation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase 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',
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
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
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 }
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