OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'include_dirs': [ | 6 'include_dirs': [ |
7 '..', | 7 '..', |
8 ], | 8 ], |
9 'defines': [ | 9 'defines': [ |
10 'SYNC_IMPLEMENTATION', | 10 'SYNC_IMPLEMENTATION', |
11 ], | 11 ], |
12 'dependencies': [ | 12 'dependencies': [ |
13 '../base/base.gyp:base', | 13 '../base/base.gyp:base', |
14 ], | 14 ], |
15 'sources': [ | 15 'sources': [ |
16 'api/string_ordinal.h', | 16 'api/string_ordinal.h', |
17 'api/syncable_service.cc', | 17 'api/syncable_service.cc', |
18 'api/syncable_service.h', | 18 'api/syncable_service.h', |
19 'api/sync_attachment.h', | |
Nicolas Zea
2013/12/30 19:10:31
nit: technically the order of these files should h
maniscalco
2013/12/30 22:17:19
Done.
| |
20 'api/sync_attachment.cc', | |
19 'api/sync_data.h', | 21 'api/sync_data.h', |
20 'api/sync_data.cc', | 22 'api/sync_data.cc', |
21 'api/sync_change.h', | 23 'api/sync_change.h', |
22 'api/sync_change.cc', | 24 'api/sync_change.cc', |
23 'api/sync_change_processor.h', | 25 'api/sync_change_processor.h', |
24 'api/sync_change_processor.cc', | 26 'api/sync_change_processor.cc', |
25 'api/sync_error.h', | 27 'api/sync_error.h', |
26 'api/sync_error.cc', | 28 'api/sync_error.cc', |
27 'api/sync_error_factory.h', | 29 'api/sync_error_factory.h', |
28 'api/sync_error_factory.cc', | 30 'api/sync_error_factory.cc', |
29 'api/sync_merge_result.h', | 31 'api/sync_merge_result.h', |
30 'api/sync_merge_result.cc', | 32 'api/sync_merge_result.cc', |
31 'api/time.h', | 33 'api/time.h', |
32 ], | 34 ], |
33 } | 35 } |
OLD | NEW |