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': [ |
11 { | 11 { |
| 12 # GN: //sync/tools:common |
12 'target_name': 'sync_tools_helper', | 13 'target_name': 'sync_tools_helper', |
13 'type': 'static_library', | 14 'type': 'static_library', |
14 'include_dirs': [ | 15 'include_dirs': [ |
15 '../..', | 16 '../..', |
16 ], | 17 ], |
17 'dependencies': [ | 18 'dependencies': [ |
18 '../../base/base.gyp:base', | 19 '../../base/base.gyp:base', |
19 '../../components/components.gyp:invalidation', | 20 '../../components/components.gyp:invalidation', |
20 '../sync.gyp:sync', | 21 '../sync.gyp:sync', |
21 ], | 22 ], |
22 'export_dependent_settings': [ | 23 'export_dependent_settings': [ |
23 '../../base/base.gyp:base', | 24 '../../base/base.gyp:base', |
24 '../sync.gyp:sync', | 25 '../sync.gyp:sync', |
25 ], | 26 ], |
26 'sources': [ | 27 'sources': [ |
27 'invalidation_helper.cc', | 28 'invalidation_helper.cc', |
28 'invalidation_helper.h', | 29 'invalidation_helper.h', |
29 'null_invalidation_state_tracker.cc', | 30 'null_invalidation_state_tracker.cc', |
30 'null_invalidation_state_tracker.h', | 31 'null_invalidation_state_tracker.h', |
31 ], | 32 ], |
32 }, | 33 }, |
33 # A tool to listen to sync notifications and print them out. | 34 # A tool to listen to sync notifications and print them out. |
34 { | 35 { |
| 36 # GN: //sync/tools:sync_listen_notifications |
35 'target_name': 'sync_listen_notifications', | 37 'target_name': 'sync_listen_notifications', |
36 'type': 'executable', | 38 'type': 'executable', |
37 'defines': [ | 39 'defines': [ |
38 'SYNC_TEST', | 40 'SYNC_TEST', |
39 ], | 41 ], |
40 'dependencies': [ | 42 'dependencies': [ |
41 '../../base/base.gyp:base', | 43 '../../base/base.gyp:base', |
42 '../../components/components.gyp:invalidation', | 44 '../../components/components.gyp:invalidation', |
43 '../../jingle/jingle.gyp:notifier', | 45 '../../jingle/jingle.gyp:notifier', |
44 '../../net/net.gyp:net', | 46 '../../net/net.gyp:net', |
45 '../../net/net.gyp:net_test_support', | 47 '../../net/net.gyp:net_test_support', |
46 '../sync.gyp:sync', | 48 '../sync.gyp:sync', |
47 'sync_tools_helper', | 49 'sync_tools_helper', |
48 ], | 50 ], |
49 'sources': [ | 51 'sources': [ |
50 'sync_listen_notifications.cc', | 52 'sync_listen_notifications.cc', |
51 ], | 53 ], |
52 }, | 54 }, |
53 | 55 |
54 # A standalone command-line sync client. | 56 # A standalone command-line sync client. |
55 { | 57 { |
| 58 # GN: //sync/tools:sync_client |
56 'target_name': 'sync_client', | 59 'target_name': 'sync_client', |
57 'type': 'executable', | 60 'type': 'executable', |
58 'defines': [ | 61 'defines': [ |
59 'SYNC_TEST', | 62 'SYNC_TEST', |
60 ], | 63 ], |
61 'dependencies': [ | 64 'dependencies': [ |
62 '../../base/base.gyp:base', | 65 '../../base/base.gyp:base', |
63 '../../components/components.gyp:invalidation', | 66 '../../components/components.gyp:invalidation', |
64 '../../jingle/jingle.gyp:notifier', | 67 '../../jingle/jingle.gyp:notifier', |
65 '../../net/net.gyp:net', | 68 '../../net/net.gyp:net', |
66 '../../net/net.gyp:net_test_support', | 69 '../../net/net.gyp:net_test_support', |
67 '../sync.gyp:sync', | 70 '../sync.gyp:sync', |
68 '../sync.gyp:test_support_sync_core', | 71 '../sync.gyp:test_support_sync_core', |
69 'sync_tools_helper', | 72 'sync_tools_helper', |
70 ], | 73 ], |
71 'sources': [ | 74 'sources': [ |
72 'sync_client.cc', | 75 'sync_client.cc', |
73 ], | 76 ], |
74 }, | 77 }, |
75 ] | 78 ] |
76 } | 79 } |
77 | 80 |
OLD | NEW |