| 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 '../base/base.gyp:test_support_base', |
| 14 ], | 15 ], |
| 15 'sources': [ | 16 'sources': [ |
| 16 'api/attachments/attachment.cc', | 17 'api/attachments/attachment.cc', |
| 17 'api/attachments/attachment.h', | 18 'api/attachments/attachment.h', |
| 19 'api/attachments/attachment_service.cc', |
| 20 'api/attachments/attachment_service.h', |
| 18 'api/attachments/attachment_store.cc', | 21 'api/attachments/attachment_store.cc', |
| 19 'api/attachments/attachment_store.h', | 22 'api/attachments/attachment_store.h', |
| 23 'api/attachments/fake_attachment_service.cc', |
| 24 'api/attachments/fake_attachment_service.h', |
| 20 'api/attachments/fake_attachment_store.cc', | 25 'api/attachments/fake_attachment_store.cc', |
| 21 'api/attachments/fake_attachment_store.h', | 26 'api/attachments/fake_attachment_store.h', |
| 22 'api/string_ordinal.h', | 27 'api/string_ordinal.h', |
| 23 'api/syncable_service.cc', | 28 'api/syncable_service.cc', |
| 24 'api/syncable_service.h', | 29 'api/syncable_service.h', |
| 25 'api/sync_data.cc', | 30 'api/sync_data.cc', |
| 26 'api/sync_data.h', | 31 'api/sync_data.h', |
| 27 'api/sync_change.cc', | 32 'api/sync_change.cc', |
| 28 'api/sync_change.h', | 33 'api/sync_change.h', |
| 29 'api/sync_change_processor.cc', | 34 'api/sync_change_processor.cc', |
| 30 'api/sync_change_processor.h', | 35 'api/sync_change_processor.h', |
| 31 'api/sync_error.cc', | 36 'api/sync_error.cc', |
| 32 'api/sync_error.h', | 37 'api/sync_error.h', |
| 33 'api/sync_error_factory.cc', | 38 'api/sync_error_factory.cc', |
| 34 'api/sync_error_factory.h', | 39 'api/sync_error_factory.h', |
| 35 'api/sync_merge_result.cc', | 40 'api/sync_merge_result.cc', |
| 36 'api/sync_merge_result.h', | 41 'api/sync_merge_result.h', |
| 37 'api/time.h', | 42 'api/time.h', |
| 38 ], | 43 ], |
| 39 } | 44 } |
| OLD | NEW |