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

Unified Diff: sync/sync.gyp

Issue 11415049: Implement features needed for local ack handling in InvalidationStateTracker. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: sync/sync.gyp
diff --git a/sync/sync.gyp b/sync/sync.gyp
index 061330b4c51d7fdde95e076dbc408bc7a23eeb1f..ac9660537e93a1ca1ad96f3b5f81c4963124f5cd 100644
--- a/sync/sync.gyp
+++ b/sync/sync.gyp
@@ -923,6 +923,25 @@
'conditions': [
['OS != "ios"', {
'targets': [
+ {
+ 'target_name': 'sync_tools_helper',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
akalin 2012/12/04 18:15:00 depend on 'sync_notifier' instead (looks like it d
dcheng 2012/12/04 19:10:50 Done.
+ ],
+ 'export_dependent_settings': [
+ '../base/base.gyp:base',
+ '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
akalin 2012/12/04 18:15:00 here too
dcheng 2012/12/04 19:10:50 Done.
+ ],
+ 'sources': [
+ 'tools/null_invalidation_state_tracker.cc',
+ 'tools/null_invalidation_state_tracker.h',
+ ],
+ },
# A tool to listen to sync notifications and print them out.
{
'target_name': 'sync_listen_notifications',
@@ -933,6 +952,7 @@
'../net/net.gyp:net',
'../net/net.gyp:net_test_support',
'sync',
+ 'sync_tools_helper',
],
'sources': [
'tools/sync_listen_notifications.cc',
@@ -952,6 +972,7 @@
'../net/net.gyp:net',
'../net/net.gyp:net_test_support',
'sync',
+ 'sync_tools_helper',
],
'sources': [
'tools/sync_client.cc',

Powered by Google App Engine
This is Rietveld 408576698