| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 | 9 |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 { | 33 { |
| 34 # GN: //components/sync/tools:sync_listen_notifications | 34 # GN: //components/sync/tools:sync_listen_notifications |
| 35 'target_name': 'sync_listen_notifications', | 35 'target_name': 'sync_listen_notifications', |
| 36 'type': 'executable', | 36 'type': 'executable', |
| 37 'defines': [ | 37 'defines': [ |
| 38 'SYNC_TEST', | 38 'SYNC_TEST', |
| 39 ], | 39 ], |
| 40 'dependencies': [ | 40 'dependencies': [ |
| 41 '../../../base/base.gyp:base', | 41 '../../../base/base.gyp:base', |
| 42 '../../../components/components.gyp:invalidation_impl', | 42 '../../../components/components.gyp:invalidation_impl', |
| 43 '../../../components/components.gyp:sync_driver', | |
| 44 '../../../jingle/jingle.gyp:notifier', | 43 '../../../jingle/jingle.gyp:notifier', |
| 45 '../../../net/net.gyp:net', | 44 '../../../net/net.gyp:net', |
| 46 '../../../net/net.gyp:net_test_support', | 45 '../../../net/net.gyp:net_test_support', |
| 47 '../../sync.gyp:sync', | 46 '../../sync.gyp:sync', |
| 48 'sync_tools_helper', | 47 'sync_tools_helper', |
| 49 ], | 48 ], |
| 50 'sources': [ | 49 'sources': [ |
| 51 'sync_listen_notifications.cc', | 50 'sync_listen_notifications.cc', |
| 52 ], | 51 ], |
| 53 }, | 52 }, |
| 54 | 53 |
| 55 # A standalone command-line sync client. | 54 # A standalone command-line sync client. |
| 56 { | 55 { |
| 57 # GN: //components/sync/tools:sync_client | 56 # GN: //components/sync/tools:sync_client |
| 58 'target_name': 'sync_client', | 57 'target_name': 'sync_client', |
| 59 'type': 'executable', | 58 'type': 'executable', |
| 60 'defines': [ | 59 'defines': [ |
| 61 'SYNC_TEST', | 60 'SYNC_TEST', |
| 62 ], | 61 ], |
| 63 'dependencies': [ | 62 'dependencies': [ |
| 64 '../../../base/base.gyp:base', | 63 '../../../base/base.gyp:base', |
| 65 '../../../components/components.gyp:invalidation_impl', | 64 '../../../components/components.gyp:invalidation_impl', |
| 66 '../../../components/components.gyp:sync_driver', | |
| 67 '../../../jingle/jingle.gyp:notifier', | 65 '../../../jingle/jingle.gyp:notifier', |
| 68 '../../../net/net.gyp:net', | 66 '../../../net/net.gyp:net', |
| 69 '../../../net/net.gyp:net_test_support', | 67 '../../../net/net.gyp:net_test_support', |
| 70 '../../sync.gyp:sync', | 68 '../../sync.gyp:sync', |
| 71 '../../sync.gyp:test_support_sync_core', | 69 '../../sync.gyp:test_support_sync_core', |
| 72 'sync_tools_helper', | 70 'sync_tools_helper', |
| 73 ], | 71 ], |
| 74 'sources': [ | 72 'sources': [ |
| 75 'sync_client.cc', | 73 'sync_client.cc', |
| 76 ], | 74 ], |
| 77 }, | 75 }, |
| 78 ] | 76 ] |
| 79 } | 77 } |
| 80 | 78 |
| OLD | NEW |