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

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

Issue 303603004: sync: Separate .gyp file for standalone tools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move the new gyp file 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/sync_tests.gypi ('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
(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 'target_name': 'sync_tools_helper',
13 'type': 'static_library',
14 'defines': [
15 'SYNC_IMPLEMENTATION',
16 ],
17 'include_dirs': [
18 '../..',
19 ],
20 'dependencies': [
21 '../../base/base.gyp:base',
22 '../sync.gyp:sync',
23 ],
24 'export_dependent_settings': [
25 '../../base/base.gyp:base',
26 '../sync.gyp:sync',
27 ],
28 'sources': [
29 'null_invalidation_state_tracker.cc',
30 'null_invalidation_state_tracker.h',
31 ],
32 },
33 # A tool to listen to sync notifications and print them out.
34 {
35 'target_name': 'sync_listen_notifications',
36 'type': 'executable',
37 'defines': [
38 'SYNC_TEST',
39 ],
40 'dependencies': [
41 '../../base/base.gyp:base',
42 '../../jingle/jingle.gyp:notifier',
43 '../../net/net.gyp:net',
44 '../../net/net.gyp:net_test_support',
45 '../sync.gyp:sync',
46 'sync_tools_helper',
47 ],
48 'sources': [
49 'sync_listen_notifications.cc',
50 ],
51 },
52
53 # A standalone command-line sync client.
54 {
55 'target_name': 'sync_client',
56 'type': 'executable',
57 'defines': [
58 'SYNC_TEST',
59 ],
60 'dependencies': [
61 '../../base/base.gyp:base',
62 '../../jingle/jingle.gyp:notifier',
63 '../../net/net.gyp:net',
64 '../../net/net.gyp:net_test_support',
65 '../sync.gyp:sync',
66 '../sync.gyp:test_support_sync_core',
67 'sync_tools_helper',
68 ],
69 'sources': [
70 'sync_client.cc',
71 ],
72 },
73 ]
74 }
75
OLDNEW
« no previous file with comments | « sync/sync_tests.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698