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

Side by Side Diff: sync/sync.gyp

Issue 10827133: [Sync] Rework unit tests for ChromeInvalidationClient (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync to head Created 8 years, 4 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 # The core sync library. 10 # The core sync library.
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after
454 ], 454 ],
455 'dependencies': [ 455 'dependencies': [
456 '../testing/gmock.gyp:gmock', 456 '../testing/gmock.gyp:gmock',
457 'sync_notifier', 457 'sync_notifier',
458 ], 458 ],
459 'export_dependent_settings': [ 459 'export_dependent_settings': [
460 '../testing/gmock.gyp:gmock', 460 '../testing/gmock.gyp:gmock',
461 'sync_notifier', 461 'sync_notifier',
462 ], 462 ],
463 'sources': [ 463 'sources': [
464 'notifier/mock_invalidation_state_tracker.cc', 464 'notifier/fake_invalidation_state_tracker.cc',
465 'notifier/mock_invalidation_state_tracker.h', 465 'notifier/fake_invalidation_state_tracker.h',
466 'notifier/mock_sync_notifier_observer.cc', 466 'notifier/mock_sync_notifier_observer.cc',
467 'notifier/mock_sync_notifier_observer.h', 467 'notifier/mock_sync_notifier_observer.h',
468 ], 468 ],
469 }, 469 },
470 470
471 # Test support files for the 'syncapi_core' target. 471 # Test support files for the 'syncapi_core' target.
472 { 472 {
473 'target_name': 'test_support_syncapi_core', 473 'target_name': 'test_support_syncapi_core',
474 'type': 'static_library', 474 'type': 'static_library',
475 'variables': { 'enable_wexit_time_destructors': 1, }, 475 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 'test_suite_name': 'sync_unit_tests', 839 'test_suite_name': 'sync_unit_tests',
840 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 840 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
841 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] , 841 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] ,
842 }, 842 },
843 'includes': [ '../build/apk_test.gypi' ], 843 'includes': [ '../build/apk_test.gypi' ],
844 }, 844 },
845 ], 845 ],
846 }], 846 }],
847 ], 847 ],
848 } 848 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698