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 '../sync.gyp:sync', | 23 '../sync.gyp:sync', |
23 ], | 24 ], |
24 'export_dependent_settings': [ | 25 'export_dependent_settings': [ |
25 '../../base/base.gyp:base', | 26 '../../base/base.gyp:base', |
26 '../sync.gyp:sync', | 27 '../sync.gyp:sync', |
27 ], | 28 ], |
28 'sources': [ | 29 'sources': [ |
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 ], |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 '../sync.gyp:test_support_sync_core', | 69 '../sync.gyp:test_support_sync_core', |
69 'sync_tools_helper', | 70 'sync_tools_helper', |
70 ], | 71 ], |
71 'sources': [ | 72 'sources': [ |
72 'sync_client.cc', | 73 'sync_client.cc', |
73 ], | 74 ], |
74 }, | 75 }, |
75 ] | 76 ] |
76 } | 77 } |
77 | 78 |
OLD | NEW |