Chromium Code Reviews| 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', |