Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Side by Side Diff: sync/sync.gyp

Issue 652723003: Implementation of OnDiskAttachmentStore. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More updates Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sync/internal_api/public/attachments/on_disk_attachment_store.h ('k') | sync/sync_tests.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 9
10 'includes': [ 10 'includes': [
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'internal_api/attachments/attachment_service.cc', 163 'internal_api/attachments/attachment_service.cc',
164 'internal_api/attachments/attachment_service_impl.cc', 164 'internal_api/attachments/attachment_service_impl.cc',
165 'internal_api/attachments/attachment_service_proxy.cc', 165 'internal_api/attachments/attachment_service_proxy.cc',
166 'internal_api/attachments/attachment_service_proxy_for_test.cc', 166 'internal_api/attachments/attachment_service_proxy_for_test.cc',
167 'internal_api/attachments/attachment_store_handle.cc', 167 'internal_api/attachments/attachment_store_handle.cc',
168 'internal_api/attachments/attachment_uploader.cc', 168 'internal_api/attachments/attachment_uploader.cc',
169 'internal_api/attachments/attachment_uploader_impl.cc', 169 'internal_api/attachments/attachment_uploader_impl.cc',
170 'internal_api/attachments/fake_attachment_downloader.cc', 170 'internal_api/attachments/fake_attachment_downloader.cc',
171 'internal_api/attachments/fake_attachment_uploader.cc', 171 'internal_api/attachments/fake_attachment_uploader.cc',
172 'internal_api/attachments/in_memory_attachment_store.cc', 172 'internal_api/attachments/in_memory_attachment_store.cc',
173 'internal_api/attachments/on_disk_attachment_store.cc',
173 'internal_api/attachments/task_queue.cc', 174 'internal_api/attachments/task_queue.cc',
174 'internal_api/base_node.cc', 175 'internal_api/base_node.cc',
175 'internal_api/base_transaction.cc', 176 'internal_api/base_transaction.cc',
176 'internal_api/change_record.cc', 177 'internal_api/change_record.cc',
177 'internal_api/change_reorder_buffer.cc', 178 'internal_api/change_reorder_buffer.cc',
178 'internal_api/change_reorder_buffer.h', 179 'internal_api/change_reorder_buffer.h',
179 'internal_api/debug_info_event_listener.cc', 180 'internal_api/debug_info_event_listener.cc',
180 'internal_api/debug_info_event_listener.h', 181 'internal_api/debug_info_event_listener.h',
181 'internal_api/delete_journal.cc', 182 'internal_api/delete_journal.cc',
182 'internal_api/events/commit_request_event.cc', 183 'internal_api/events/commit_request_event.cc',
(...skipping 19 matching lines...) Expand all
202 'internal_api/public/attachments/attachment_service.h', 203 'internal_api/public/attachments/attachment_service.h',
203 'internal_api/public/attachments/attachment_service_impl.h', 204 'internal_api/public/attachments/attachment_service_impl.h',
204 'internal_api/public/attachments/attachment_service_proxy.h', 205 'internal_api/public/attachments/attachment_service_proxy.h',
205 'internal_api/public/attachments/attachment_service_proxy_for_test.h', 206 'internal_api/public/attachments/attachment_service_proxy_for_test.h',
206 'internal_api/public/attachments/attachment_store_handle.h', 207 'internal_api/public/attachments/attachment_store_handle.h',
207 'internal_api/public/attachments/attachment_uploader.h', 208 'internal_api/public/attachments/attachment_uploader.h',
208 'internal_api/public/attachments/attachment_uploader_impl.h', 209 'internal_api/public/attachments/attachment_uploader_impl.h',
209 'internal_api/public/attachments/fake_attachment_downloader.h', 210 'internal_api/public/attachments/fake_attachment_downloader.h',
210 'internal_api/public/attachments/fake_attachment_uploader.h', 211 'internal_api/public/attachments/fake_attachment_uploader.h',
211 'internal_api/public/attachments/in_memory_attachment_store.h', 212 'internal_api/public/attachments/in_memory_attachment_store.h',
213 'internal_api/public/attachments/on_disk_attachment_store.h',
212 'internal_api/public/attachments/task_queue.h', 214 'internal_api/public/attachments/task_queue.h',
213 'internal_api/public/base/attachment_id_proto.cc', 215 'internal_api/public/base/attachment_id_proto.cc',
214 'internal_api/public/base/attachment_id_proto.h', 216 'internal_api/public/base/attachment_id_proto.h',
215 'internal_api/public/base/cancelation_observer.cc', 217 'internal_api/public/base/cancelation_observer.cc',
216 'internal_api/public/base/cancelation_observer.h', 218 'internal_api/public/base/cancelation_observer.h',
217 'internal_api/public/base/cancelation_signal.cc', 219 'internal_api/public/base/cancelation_signal.cc',
218 'internal_api/public/base/cancelation_signal.h', 220 'internal_api/public/base/cancelation_signal.h',
219 'internal_api/public/base/enum_set.h', 221 'internal_api/public/base/enum_set.h',
220 'internal_api/public/base/enum_set.h', 222 'internal_api/public/base/enum_set.h',
221 'internal_api/public/base/invalidation_interface.cc', 223 'internal_api/public/base/invalidation_interface.cc',
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 'proto_out_dir': 'sync/protocol', 513 'proto_out_dir': 'sync/protocol',
512 'cc_generator_options': 'dllexport_decl=SYNC_PROTO_EXPORT:', 514 'cc_generator_options': 'dllexport_decl=SYNC_PROTO_EXPORT:',
513 'cc_include': 'sync/protocol/sync_proto_export.h', 515 'cc_include': 'sync/protocol/sync_proto_export.h',
514 }, 516 },
515 'includes': [ 517 'includes': [
516 '../build/protoc.gypi' 518 '../build/protoc.gypi'
517 ], 519 ],
518 }, 520 },
519 ], 521 ],
520 } 522 }
OLDNEW
« no previous file with comments | « sync/internal_api/public/attachments/on_disk_attachment_store.h ('k') | sync/sync_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698