| OLD | NEW |
| (Empty) |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 | |
| 10 'targets': [ | |
| 11 { | |
| 12 # GN: //components/sync/tools:common | |
| 13 'target_name': 'sync_tools_helper', | |
| 14 'type': 'static_library', | |
| 15 'include_dirs': [ | |
| 16 '../../..', | |
| 17 ], | |
| 18 'dependencies': [ | |
| 19 '../../../base/base.gyp:base', | |
| 20 '../../../components/components.gyp:invalidation_impl', | |
| 21 '../../sync.gyp:sync', | |
| 22 ], | |
| 23 'export_dependent_settings': [ | |
| 24 '../../../base/base.gyp:base', | |
| 25 '../../sync.gyp:sync', | |
| 26 ], | |
| 27 'sources': [ | |
| 28 'null_invalidation_state_tracker.cc', | |
| 29 'null_invalidation_state_tracker.h', | |
| 30 ], | |
| 31 }, | |
| 32 # A tool to listen to sync notifications and print them out. | |
| 33 { | |
| 34 # GN: //components/sync/tools:sync_listen_notifications | |
| 35 'target_name': 'sync_listen_notifications', | |
| 36 'type': 'executable', | |
| 37 'defines': [ | |
| 38 'SYNC_TEST', | |
| 39 ], | |
| 40 'dependencies': [ | |
| 41 '../../../base/base.gyp:base', | |
| 42 '../../../components/components.gyp:invalidation_impl', | |
| 43 '../../../jingle/jingle.gyp:notifier', | |
| 44 '../../../net/net.gyp:net', | |
| 45 '../../../net/net.gyp:net_test_support', | |
| 46 '../../sync.gyp:sync', | |
| 47 'sync_tools_helper', | |
| 48 ], | |
| 49 'sources': [ | |
| 50 'sync_listen_notifications.cc', | |
| 51 ], | |
| 52 }, | |
| 53 | |
| 54 # A standalone command-line sync client. | |
| 55 { | |
| 56 # GN: //components/sync/tools:sync_client | |
| 57 'target_name': 'sync_client', | |
| 58 'type': 'executable', | |
| 59 'defines': [ | |
| 60 'SYNC_TEST', | |
| 61 ], | |
| 62 'dependencies': [ | |
| 63 '../../../base/base.gyp:base', | |
| 64 '../../../components/components.gyp:invalidation_impl', | |
| 65 '../../../jingle/jingle.gyp:notifier', | |
| 66 '../../../net/net.gyp:net', | |
| 67 '../../../net/net.gyp:net_test_support', | |
| 68 '../../sync.gyp:sync', | |
| 69 '../../sync.gyp:test_support_sync_core', | |
| 70 'sync_tools_helper', | |
| 71 ], | |
| 72 'sources': [ | |
| 73 'sync_client.cc', | |
| 74 ], | |
| 75 }, | |
| 76 ] | |
| 77 } | |
| 78 | |
| OLD | NEW |