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

Side by Side Diff: sync/sync.gyp

Issue 10824161: [Sync] Avoid unregistering object IDs on shutdown (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Work around brittle unit test 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 'sources': [ 250 'sources': [
251 'notifier/invalidation_util.cc', 251 'notifier/invalidation_util.cc',
252 'notifier/invalidation_util.h', 252 'notifier/invalidation_util.h',
253 'notifier/notifications_disabled_reason.cc', 253 'notifier/notifications_disabled_reason.cc',
254 'notifier/notifications_disabled_reason.h', 254 'notifier/notifications_disabled_reason.h',
255 'notifier/object_id_payload_map.cc', 255 'notifier/object_id_payload_map.cc',
256 'notifier/object_id_payload_map.h', 256 'notifier/object_id_payload_map.h',
257 'notifier/sync_notifier.h', 257 'notifier/sync_notifier.h',
258 'notifier/sync_notifier_factory.cc', 258 'notifier/sync_notifier_factory.cc',
259 'notifier/sync_notifier_factory.h', 259 'notifier/sync_notifier_factory.h',
260 'notifier/sync_notifier_helper.cc',
261 'notifier/sync_notifier_helper.h',
262 'notifier/sync_notifier_observer.h', 260 'notifier/sync_notifier_observer.h',
261 'notifier/sync_notifier_registrar.cc',
262 'notifier/sync_notifier_registrar.h',
263 ], 263 ],
264 'conditions': [ 264 'conditions': [
265 ['OS != "android"', { 265 ['OS != "android"', {
266 'sources': [ 266 'sources': [
267 'notifier/chrome_invalidation_client.cc', 267 'notifier/chrome_invalidation_client.cc',
268 'notifier/chrome_invalidation_client.h', 268 'notifier/chrome_invalidation_client.h',
269 'notifier/chrome_system_resources.cc', 269 'notifier/chrome_system_resources.cc',
270 'notifier/chrome_system_resources.h', 270 'notifier/chrome_system_resources.h',
271 'notifier/invalidation_notifier.cc', 271 'notifier/invalidation_notifier.cc',
272 'notifier/invalidation_notifier.h', 272 'notifier/invalidation_notifier.h',
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 'conditions': [ 647 'conditions': [
648 ['OS != "android"', { 648 ['OS != "android"', {
649 'sources': [ 649 'sources': [
650 'notifier/chrome_invalidation_client_unittest.cc', 650 'notifier/chrome_invalidation_client_unittest.cc',
651 'notifier/chrome_system_resources_unittest.cc', 651 'notifier/chrome_system_resources_unittest.cc',
652 'notifier/invalidation_notifier_unittest.cc', 652 'notifier/invalidation_notifier_unittest.cc',
653 'notifier/non_blocking_invalidation_notifier_unittest.cc', 653 'notifier/non_blocking_invalidation_notifier_unittest.cc',
654 'notifier/p2p_notifier_unittest.cc', 654 'notifier/p2p_notifier_unittest.cc',
655 'notifier/push_client_channel_unittest.cc', 655 'notifier/push_client_channel_unittest.cc',
656 'notifier/registration_manager_unittest.cc', 656 'notifier/registration_manager_unittest.cc',
657 'notifier/sync_notifier_helper_unittest.cc', 657 'notifier/sync_notifier_registrar_unittest.cc',
658 ], 658 ],
659 }], 659 }],
660 ], 660 ],
661 }, 661 },
662 }, 662 },
663 663
664 # Unit tests for the 'syncapi_core' target. This cannot be a static 664 # Unit tests for the 'syncapi_core' target. This cannot be a static
665 # library because the unit test files have to be compiled directly 665 # library because the unit test files have to be compiled directly
666 # into the executable, so we push the target files to the 666 # into the executable, so we push the target files to the
667 # depending executable target via direct_dependent_settings. 667 # depending executable target via direct_dependent_settings.
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 'variables': { 840 'variables': {
841 'test_suite_name': 'sync_unit_tests', 841 'test_suite_name': 'sync_unit_tests',
842 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 842 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
843 }, 843 },
844 'includes': [ '../build/apk_test.gypi' ], 844 'includes': [ '../build/apk_test.gypi' ],
845 }, 845 },
846 ], 846 ],
847 }], 847 }],
848 ], 848 ],
849 } 849 }
OLDNEW
« no previous file with comments | « sync/notifier/sync_notifier_registrar_unittest.cc ('k') | sync/tools/sync_listen_notifications.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698