| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("sync") { | 8 component("sync") { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 ":sync_core", | 10 ":sync_core", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 "internal_api/attachments/attachment_service_proxy.cc", | 126 "internal_api/attachments/attachment_service_proxy.cc", |
| 127 "internal_api/attachments/attachment_service_proxy_for_test.cc", | 127 "internal_api/attachments/attachment_service_proxy_for_test.cc", |
| 128 "internal_api/attachments/attachment_store_frontend.cc", | 128 "internal_api/attachments/attachment_store_frontend.cc", |
| 129 "internal_api/attachments/attachment_uploader.cc", | 129 "internal_api/attachments/attachment_uploader.cc", |
| 130 "internal_api/attachments/attachment_uploader_impl.cc", | 130 "internal_api/attachments/attachment_uploader_impl.cc", |
| 131 "internal_api/attachments/attachment_util.cc", | 131 "internal_api/attachments/attachment_util.cc", |
| 132 "internal_api/attachments/fake_attachment_downloader.cc", | 132 "internal_api/attachments/fake_attachment_downloader.cc", |
| 133 "internal_api/attachments/fake_attachment_uploader.cc", | 133 "internal_api/attachments/fake_attachment_uploader.cc", |
| 134 "internal_api/attachments/in_memory_attachment_store.cc", | 134 "internal_api/attachments/in_memory_attachment_store.cc", |
| 135 "internal_api/attachments/on_disk_attachment_store.cc", | 135 "internal_api/attachments/on_disk_attachment_store.cc", |
| 136 "internal_api/attachments/task_queue.cc", |
| 136 "internal_api/base_node.cc", | 137 "internal_api/base_node.cc", |
| 137 "internal_api/base_transaction.cc", | 138 "internal_api/base_transaction.cc", |
| 138 "internal_api/change_record.cc", | 139 "internal_api/change_record.cc", |
| 139 "internal_api/change_reorder_buffer.cc", | 140 "internal_api/change_reorder_buffer.cc", |
| 140 "internal_api/change_reorder_buffer.h", | 141 "internal_api/change_reorder_buffer.h", |
| 141 "internal_api/debug_info_event_listener.cc", | 142 "internal_api/debug_info_event_listener.cc", |
| 142 "internal_api/debug_info_event_listener.h", | 143 "internal_api/debug_info_event_listener.h", |
| 143 "internal_api/delete_journal.cc", | 144 "internal_api/delete_journal.cc", |
| 144 "internal_api/events/commit_request_event.cc", | 145 "internal_api/events/commit_request_event.cc", |
| 145 "internal_api/events/commit_response_event.cc", | 146 "internal_api/events/commit_response_event.cc", |
| (...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 deps = [ | 811 deps = [ |
| 811 ":fake_server_jni", | 812 ":fake_server_jni", |
| 812 ":sync_core", | 813 ":sync_core", |
| 813 ":test_support_sync_fake_server", | 814 ":test_support_sync_fake_server", |
| 814 "//base", | 815 "//base", |
| 815 "//sync/protocol:protocol", | 816 "//sync/protocol:protocol", |
| 816 "//testing/gtest", | 817 "//testing/gtest", |
| 817 ] | 818 ] |
| 818 } | 819 } |
| 819 } | 820 } |
| OLD | NEW |