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 'target_name': 'sync_tools_helper', | 12 'target_name': 'sync_tools_helper', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'defines': [ | 14 'defines': [ |
15 'SYNC_IMPLEMENTATION', | 15 'SYNC_IMPLEMENTATION', |
16 ], | 16 ], |
17 'include_dirs': [ | 17 'include_dirs': [ |
18 '../..', | 18 '../..', |
19 ], | 19 ], |
20 'dependencies': [ | 20 'dependencies': [ |
21 '../../base/base.gyp:base', | 21 '../../base/base.gyp:base', |
22 '../../components/components.gyp:invalidation', | 22 '../../components/components.gyp:invalidation', |
23 '../sync.gyp:sync', | 23 '../sync.gyp:sync', |
24 ], | 24 ], |
25 'export_dependent_settings': [ | 25 'export_dependent_settings': [ |
26 '../../base/base.gyp:base', | 26 '../../base/base.gyp:base', |
27 '../sync.gyp:sync', | 27 '../sync.gyp:sync', |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
| 30 'invalidation_helper.cc', |
| 31 'invalidation_helper.h', |
30 'null_invalidation_state_tracker.cc', | 32 'null_invalidation_state_tracker.cc', |
31 'null_invalidation_state_tracker.h', | 33 'null_invalidation_state_tracker.h', |
32 ], | 34 ], |
33 }, | 35 }, |
34 # A tool to listen to sync notifications and print them out. | 36 # A tool to listen to sync notifications and print them out. |
35 { | 37 { |
36 'target_name': 'sync_listen_notifications', | 38 'target_name': 'sync_listen_notifications', |
37 'type': 'executable', | 39 'type': 'executable', |
38 'defines': [ | 40 'defines': [ |
39 'SYNC_TEST', | 41 'SYNC_TEST', |
(...skipping 29 matching lines...) Expand all Loading... |
69 '../sync.gyp:test_support_sync_core', | 71 '../sync.gyp:test_support_sync_core', |
70 'sync_tools_helper', | 72 'sync_tools_helper', |
71 ], | 73 ], |
72 'sources': [ | 74 'sources': [ |
73 'sync_client.cc', | 75 'sync_client.cc', |
74 ], | 76 ], |
75 }, | 77 }, |
76 ] | 78 ] |
77 } | 79 } |
78 | 80 |
OLD | NEW |