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

Side by Side Diff: sync/sync.gyp

Issue 10823037: Revert r148496 "Refactor sync-specific parts out of SyncNotifier/SyncNotifierObserver" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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/notifier/sync_notifier_observer.h ('k') | sync/tools/sync_listen_notifications.cc » ('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 (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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 '../third_party/libjingle/libjingle.gyp:libjingle', 243 '../third_party/libjingle/libjingle.gyp:libjingle',
244 'sync', 244 'sync',
245 ], 245 ],
246 'export_dependent_settings': [ 246 'export_dependent_settings': [
247 '../jingle/jingle.gyp:notifier', 247 '../jingle/jingle.gyp:notifier',
248 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 248 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
249 ], 249 ],
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.h',
253 'notifier/notifications_disabled_reason.cc', 254 'notifier/notifications_disabled_reason.cc',
254 'notifier/notifications_disabled_reason.h',
255 'notifier/object_id_payload_map.cc',
256 'notifier/object_id_payload_map.h',
257 'notifier/sync_notifier.h', 255 'notifier/sync_notifier.h',
256 'notifier/sync_notifier_factory.h',
258 'notifier/sync_notifier_factory.cc', 257 'notifier/sync_notifier_factory.cc',
259 'notifier/sync_notifier_factory.h',
260 'notifier/sync_notifier_helper.cc',
261 'notifier/sync_notifier_helper.h',
262 'notifier/sync_notifier_observer.h', 258 'notifier/sync_notifier_observer.h',
263 ], 259 ],
264 'conditions': [ 260 'conditions': [
265 ['OS != "android"', { 261 ['OS != "android"', {
266 'sources': [ 262 'sources': [
267 'notifier/chrome_invalidation_client.cc', 263 'notifier/chrome_invalidation_client.cc',
268 'notifier/chrome_invalidation_client.h', 264 'notifier/chrome_invalidation_client.h',
269 'notifier/chrome_system_resources.cc', 265 'notifier/chrome_system_resources.cc',
270 'notifier/chrome_system_resources.h', 266 'notifier/chrome_system_resources.h',
267 'notifier/invalidation_notifier.h',
271 'notifier/invalidation_notifier.cc', 268 'notifier/invalidation_notifier.cc',
272 'notifier/invalidation_notifier.h',
273 'notifier/invalidation_state_tracker.h', 269 'notifier/invalidation_state_tracker.h',
270 'notifier/non_blocking_invalidation_notifier.h',
274 'notifier/non_blocking_invalidation_notifier.cc', 271 'notifier/non_blocking_invalidation_notifier.cc',
275 'notifier/non_blocking_invalidation_notifier.h', 272 'notifier/p2p_notifier.h',
276 'notifier/p2p_notifier.cc', 273 'notifier/p2p_notifier.cc',
277 'notifier/p2p_notifier.h',
278 'notifier/push_client_channel.cc', 274 'notifier/push_client_channel.cc',
279 'notifier/push_client_channel.h', 275 'notifier/push_client_channel.h',
280 'notifier/registration_manager.cc', 276 'notifier/registration_manager.cc',
281 'notifier/registration_manager.h', 277 'notifier/registration_manager.h',
282 'notifier/state_writer.h', 278 'notifier/state_writer.h',
283 ], 279 ],
284 }], 280 }],
285 ], 281 ],
286 }, 282 },
287 283
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 'conditions': [ 642 'conditions': [
647 ['OS != "android"', { 643 ['OS != "android"', {
648 'sources': [ 644 'sources': [
649 'notifier/chrome_invalidation_client_unittest.cc', 645 'notifier/chrome_invalidation_client_unittest.cc',
650 'notifier/chrome_system_resources_unittest.cc', 646 'notifier/chrome_system_resources_unittest.cc',
651 'notifier/invalidation_notifier_unittest.cc', 647 'notifier/invalidation_notifier_unittest.cc',
652 'notifier/non_blocking_invalidation_notifier_unittest.cc', 648 'notifier/non_blocking_invalidation_notifier_unittest.cc',
653 'notifier/p2p_notifier_unittest.cc', 649 'notifier/p2p_notifier_unittest.cc',
654 'notifier/push_client_channel_unittest.cc', 650 'notifier/push_client_channel_unittest.cc',
655 'notifier/registration_manager_unittest.cc', 651 'notifier/registration_manager_unittest.cc',
656 'notifier/sync_notifier_helper_unittest.cc',
657 ], 652 ],
658 }], 653 }],
659 ], 654 ],
660 }, 655 },
661 }, 656 },
662 657
663 # Unit tests for the 'syncapi_core' target. This cannot be a static 658 # Unit tests for the 'syncapi_core' target. This cannot be a static
664 # library because the unit test files have to be compiled directly 659 # library because the unit test files have to be compiled directly
665 # into the executable, so we push the target files to the 660 # into the executable, so we push the target files to the
666 # depending executable target via direct_dependent_settings. 661 # depending executable target via direct_dependent_settings.
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 'test_suite_name': 'sync_unit_tests', 835 'test_suite_name': 'sync_unit_tests',
841 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 836 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
842 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] , 837 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] ,
843 }, 838 },
844 'includes': [ '../build/apk_test.gypi' ], 839 'includes': [ '../build/apk_test.gypi' ],
845 }, 840 },
846 ], 841 ],
847 }], 842 }],
848 ], 843 ],
849 } 844 }
OLDNEW
« no previous file with comments | « sync/notifier/sync_notifier_observer.h ('k') | sync/tools/sync_listen_notifications.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698