| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 9 'targets': [ |
| 10 # The core sync library. | 10 # The core sync library. |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 ], | 34 ], |
| 35 'sources': [ | 35 'sources': [ |
| 36 'engine/apply_updates_command.cc', | 36 'engine/apply_updates_command.cc', |
| 37 'engine/apply_updates_command.h', | 37 'engine/apply_updates_command.h', |
| 38 'engine/build_commit_command.cc', | 38 'engine/build_commit_command.cc', |
| 39 'engine/build_commit_command.h', | 39 'engine/build_commit_command.h', |
| 40 'engine/cleanup_disabled_types_command.cc', | 40 'engine/cleanup_disabled_types_command.cc', |
| 41 'engine/cleanup_disabled_types_command.h', | 41 'engine/cleanup_disabled_types_command.h', |
| 42 'engine/clear_data_command.cc', | 42 'engine/clear_data_command.cc', |
| 43 'engine/clear_data_command.h', | 43 'engine/clear_data_command.h', |
| 44 'engine/commit.cc', |
| 45 'engine/commit.h', |
| 44 'engine/conflict_resolver.cc', | 46 'engine/conflict_resolver.cc', |
| 45 'engine/conflict_resolver.h', | 47 'engine/conflict_resolver.h', |
| 46 'engine/download_updates_command.cc', | 48 'engine/download_updates_command.cc', |
| 47 'engine/download_updates_command.h', | 49 'engine/download_updates_command.h', |
| 48 'engine/get_commit_ids_command.cc', | 50 'engine/get_commit_ids_command.cc', |
| 49 'engine/get_commit_ids_command.h', | 51 'engine/get_commit_ids_command.h', |
| 50 'engine/model_changing_syncer_command.cc', | 52 'engine/model_changing_syncer_command.cc', |
| 51 'engine/model_changing_syncer_command.h', | 53 'engine/model_changing_syncer_command.h', |
| 52 'engine/model_safe_worker.cc', | 54 'engine/model_safe_worker.cc', |
| 53 'engine/model_safe_worker.h', | 55 'engine/model_safe_worker.h', |
| 54 'engine/passive_model_worker.cc', | 56 'engine/passive_model_worker.cc', |
| 55 'engine/passive_model_worker.h', | 57 'engine/passive_model_worker.h', |
| 56 'engine/net/server_connection_manager.cc', | 58 'engine/net/server_connection_manager.cc', |
| 57 'engine/net/server_connection_manager.h', | 59 'engine/net/server_connection_manager.h', |
| 58 'engine/net/url_translator.cc', | 60 'engine/net/url_translator.cc', |
| 59 'engine/net/url_translator.h', | 61 'engine/net/url_translator.h', |
| 60 'engine/nigori_util.cc', | 62 'engine/nigori_util.cc', |
| 61 'engine/nigori_util.h', | 63 'engine/nigori_util.h', |
| 62 'engine/nudge_source.cc', | 64 'engine/nudge_source.cc', |
| 63 'engine/nudge_source.h', | 65 'engine/nudge_source.h', |
| 64 'engine/polling_constants.cc', | 66 'engine/polling_constants.cc', |
| 65 'engine/polling_constants.h', | 67 'engine/polling_constants.h', |
| 66 'engine/post_commit_message_command.cc', | |
| 67 'engine/post_commit_message_command.h', | |
| 68 'engine/process_commit_response_command.cc', | 68 'engine/process_commit_response_command.cc', |
| 69 'engine/process_commit_response_command.h', | 69 'engine/process_commit_response_command.h', |
| 70 'engine/process_updates_command.cc', | 70 'engine/process_updates_command.cc', |
| 71 'engine/process_updates_command.h', | 71 'engine/process_updates_command.h', |
| 72 'engine/resolve_conflicts_command.cc', | 72 'engine/resolve_conflicts_command.cc', |
| 73 'engine/resolve_conflicts_command.h', | 73 'engine/resolve_conflicts_command.h', |
| 74 'engine/store_timestamps_command.cc', | 74 'engine/store_timestamps_command.cc', |
| 75 'engine/store_timestamps_command.h', | 75 'engine/store_timestamps_command.h', |
| 76 'engine/syncer.cc', | 76 'engine/syncer.cc', |
| 77 'engine/syncer.h', | 77 'engine/syncer.h', |
| (...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 '../net/net.gyp:net_test_support', | 728 '../net/net.gyp:net_test_support', |
| 729 'sync', | 729 'sync', |
| 730 'sync_notifier', | 730 'sync_notifier', |
| 731 ], | 731 ], |
| 732 'sources': [ | 732 'sources': [ |
| 733 'tools/sync_listen_notifications.cc', | 733 'tools/sync_listen_notifications.cc', |
| 734 ], | 734 ], |
| 735 }, | 735 }, |
| 736 ], | 736 ], |
| 737 } | 737 } |
| OLD | NEW |