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

Side by Side Diff: sync/sync.gyp

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