Index: sync/sync.gyp |
diff --git a/sync/sync.gyp b/sync/sync.gyp |
index 061330b4c51d7fdde95e076dbc408bc7a23eeb1f..f88f9936e16bc541c33cb99802169e2338beb8f8 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', |
+ 'sync_notifier', |
+ ], |
+ 'export_dependent_settings': [ |
+ '../base/base.gyp:base', |
+ 'sync_notifier', |
+ ], |
+ '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', |