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

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: DEPS 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
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 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 '../third_party/libjingle/libjingle.gyp:libjingle', 233 '../third_party/libjingle/libjingle.gyp:libjingle',
234 'sync', 234 'sync',
235 ], 235 ],
236 'export_dependent_settings': [ 236 'export_dependent_settings': [
237 '../jingle/jingle.gyp:notifier', 237 '../jingle/jingle.gyp:notifier',
238 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n', 238 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n',
239 ], 239 ],
240 'sources': [ 240 'sources': [
241 'notifier/invalidation_util.cc', 241 'notifier/invalidation_util.cc',
242 'notifier/invalidation_util.h', 242 'notifier/invalidation_util.h',
243 'notifier/notifications_disabled_reason.cc',
243 'notifier/notifications_disabled_reason.h', 244 'notifier/notifications_disabled_reason.h',
244 'notifier/notifications_disabled_reason.cc', 245 'notifier/object_id_payload_map.cc',
246 'notifier/object_id_payload_map.h',
247 'notifier/sync_notifier_factory.cc',
248 'notifier/sync_notifier_factory.h',
245 'notifier/sync_notifier.h', 249 'notifier/sync_notifier.h',
246 'notifier/sync_notifier_factory.h',
247 'notifier/sync_notifier_factory.cc',
248 'notifier/sync_notifier_observer.h', 250 'notifier/sync_notifier_observer.h',
249 ], 251 ],
250 'conditions': [ 252 'conditions': [
251 ['OS != "android"', { 253 ['OS != "android"', {
252 'sources': [ 254 'sources': [
253 'notifier/chrome_invalidation_client.cc', 255 'notifier/chrome_invalidation_client.cc',
254 'notifier/chrome_invalidation_client.h', 256 'notifier/chrome_invalidation_client.h',
255 'notifier/chrome_system_resources.cc', 257 'notifier/chrome_system_resources.cc',
256 'notifier/chrome_system_resources.h', 258 'notifier/chrome_system_resources.h',
259 'notifier/invalidation_notifier.cc',
257 'notifier/invalidation_notifier.h', 260 'notifier/invalidation_notifier.h',
258 'notifier/invalidation_notifier.cc',
259 'notifier/invalidation_state_tracker.h', 261 'notifier/invalidation_state_tracker.h',
262 'notifier/non_blocking_invalidation_notifier.cc',
260 'notifier/non_blocking_invalidation_notifier.h', 263 'notifier/non_blocking_invalidation_notifier.h',
261 'notifier/non_blocking_invalidation_notifier.cc', 264 'notifier/p2p_notifier.cc',
262 'notifier/p2p_notifier.h', 265 'notifier/p2p_notifier.h',
263 'notifier/p2p_notifier.cc',
264 'notifier/push_client_channel.cc', 266 'notifier/push_client_channel.cc',
265 'notifier/push_client_channel.h', 267 'notifier/push_client_channel.h',
266 'notifier/registration_manager.cc', 268 'notifier/registration_manager.cc',
267 'notifier/registration_manager.h', 269 'notifier/registration_manager.h',
268 'notifier/state_writer.h', 270 'notifier/state_writer.h',
271 'notifier/sync_notifier_helper.cc',
272 'notifier/sync_notifier_helper.h',
269 ], 273 ],
270 }], 274 }],
271 ], 275 ],
272 }, 276 },
273 277
274 # The sync internal API library. 278 # The sync internal API library.
275 { 279 {
276 'target_name': 'syncapi_core', 280 'target_name': 'syncapi_core',
277 'type': 'static_library', 281 'type': 'static_library',
278 'variables': { 'enable_wexit_time_destructors': 1, }, 282 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
815 'test_suite_name': 'sync_unit_tests', 819 'test_suite_name': 'sync_unit_tests',
816 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 820 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
817 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] , 821 'input_jars_paths': [ '<(PRODUCT_DIR)/lib.java/chromium_base.jar', ] ,
818 }, 822 },
819 'includes': [ '../build/apk_test.gypi' ], 823 'includes': [ '../build/apk_test.gypi' ],
820 }, 824 },
821 ], 825 ],
822 }], 826 }],
823 ], 827 ],
824 } 828 }
OLDNEW
« sync/notifier/sync_notifier_helper.cc ('K') | « sync/notifier/sync_notifier_observer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698