Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: sync/tools/sync_tools.gyp

Issue 294123004: Move some sync/notifier to components/invalidation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/tools/sync_listen_notifications.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 21 matching lines...) Expand all
32 }, 32 },
33 # A tool to listen to sync notifications and print them out. 33 # A tool to listen to sync notifications and print them out.
34 { 34 {
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',
42 '../../jingle/jingle.gyp:notifier', 43 '../../jingle/jingle.gyp:notifier',
43 '../../net/net.gyp:net', 44 '../../net/net.gyp:net',
44 '../../net/net.gyp:net_test_support', 45 '../../net/net.gyp:net_test_support',
45 '../sync.gyp:sync', 46 '../sync.gyp:sync',
46 'sync_tools_helper', 47 'sync_tools_helper',
47 ], 48 ],
48 'sources': [ 49 'sources': [
49 'sync_listen_notifications.cc', 50 'sync_listen_notifications.cc',
50 ], 51 ],
51 }, 52 },
52 53
53 # A standalone command-line sync client. 54 # A standalone command-line sync client.
54 { 55 {
55 'target_name': 'sync_client', 56 'target_name': 'sync_client',
56 'type': 'executable', 57 'type': 'executable',
57 'defines': [ 58 'defines': [
58 'SYNC_TEST', 59 'SYNC_TEST',
59 ], 60 ],
60 'dependencies': [ 61 'dependencies': [
61 '../../base/base.gyp:base', 62 '../../base/base.gyp:base',
63 '../../components/components.gyp:invalidation',
62 '../../jingle/jingle.gyp:notifier', 64 '../../jingle/jingle.gyp:notifier',
63 '../../net/net.gyp:net', 65 '../../net/net.gyp:net',
64 '../../net/net.gyp:net_test_support', 66 '../../net/net.gyp:net_test_support',
65 '../sync.gyp:sync', 67 '../sync.gyp:sync',
66 '../sync.gyp:test_support_sync_core', 68 '../sync.gyp:test_support_sync_core',
67 'sync_tools_helper', 69 'sync_tools_helper',
68 ], 70 ],
69 'sources': [ 71 'sources': [
70 'sync_client.cc', 72 'sync_client.cc',
71 ], 73 ],
72 }, 74 },
73 ] 75 ]
74 } 76 }
75 77
OLDNEW
« no previous file with comments | « sync/tools/sync_listen_notifications.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698