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

Side by Side Diff: sync/sync_internal_api.gypi

Issue 387733004: Move sync/notifier to components/invalidation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: (GN) Comment out dependency on internal target Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « sync/sync.gyp ('k') | sync/sync_notifier.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 '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 '../net/net.gyp:net', 14 '../net/net.gyp:net',
15 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
15 '../third_party/zlib/zlib.gyp:zlib', 16 '../third_party/zlib/zlib.gyp:zlib',
16 '../url/url.gyp:url_lib', 17 '../url/url.gyp:url_lib',
17 ], 18 ],
19 'export_dependent_settings': [
20 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
21 ],
18 'sources': [ 22 'sources': [
19 'internal_api/attachments/attachment_downloader_impl.cc', 23 'internal_api/attachments/attachment_downloader_impl.cc',
20 'internal_api/attachments/attachment_uploader_impl.cc', 24 'internal_api/attachments/attachment_uploader_impl.cc',
21 'internal_api/attachments/fake_attachment_downloader.cc', 25 'internal_api/attachments/fake_attachment_downloader.cc',
22 'internal_api/attachments/fake_attachment_store.cc', 26 'internal_api/attachments/fake_attachment_store.cc',
23 'internal_api/attachments/fake_attachment_uploader.cc', 27 'internal_api/attachments/fake_attachment_uploader.cc',
24 'internal_api/base_node.cc', 28 'internal_api/base_node.cc',
25 'internal_api/base_transaction.cc', 29 'internal_api/base_transaction.cc',
26 'internal_api/change_record.cc', 30 'internal_api/change_record.cc',
27 'internal_api/change_reorder_buffer.cc', 31 'internal_api/change_reorder_buffer.cc',
(...skipping 19 matching lines...) Expand all
47 'internal_api/js_sync_manager_observer.h', 51 'internal_api/js_sync_manager_observer.h',
48 'internal_api/protocol_event_buffer.cc', 52 'internal_api/protocol_event_buffer.cc',
49 'internal_api/protocol_event_buffer.h', 53 'internal_api/protocol_event_buffer.h',
50 'internal_api/public/attachments/attachment_downloader_impl.h', 54 'internal_api/public/attachments/attachment_downloader_impl.h',
51 'internal_api/public/attachments/attachment_uploader_impl.h', 55 'internal_api/public/attachments/attachment_uploader_impl.h',
52 'internal_api/public/attachments/fake_attachment_downloader.h', 56 'internal_api/public/attachments/fake_attachment_downloader.h',
53 'internal_api/public/attachments/fake_attachment_store.h', 57 'internal_api/public/attachments/fake_attachment_store.h',
54 'internal_api/public/attachments/fake_attachment_uploader.h', 58 'internal_api/public/attachments/fake_attachment_uploader.h',
55 'internal_api/public/base/ack_handle.cc', 59 'internal_api/public/base/ack_handle.cc',
56 'internal_api/public/base/ack_handle.h', 60 'internal_api/public/base/ack_handle.h',
61 'internal_api/public/base/ack_handler.cc',
62 'internal_api/public/base/ack_handler.h',
57 'internal_api/public/base/attachment_id_proto.cc', 63 'internal_api/public/base/attachment_id_proto.cc',
58 'internal_api/public/base/attachment_id_proto.h', 64 'internal_api/public/base/attachment_id_proto.h',
59 'internal_api/public/base/cancelation_observer.cc', 65 'internal_api/public/base/cancelation_observer.cc',
60 'internal_api/public/base/cancelation_observer.h', 66 'internal_api/public/base/cancelation_observer.h',
61 'internal_api/public/base/cancelation_signal.cc', 67 'internal_api/public/base/cancelation_signal.cc',
62 'internal_api/public/base/cancelation_signal.h', 68 'internal_api/public/base/cancelation_signal.h',
63 'internal_api/public/base/enum_set.h', 69 'internal_api/public/base/enum_set.h',
64 'internal_api/public/base/enum_set.h', 70 'internal_api/public/base/enum_set.h',
65 'internal_api/public/base/invalidation.cc', 71 'internal_api/public/base/invalidation.cc',
66 'internal_api/public/base/invalidation.h', 72 'internal_api/public/base/invalidation.h',
67 'internal_api/public/base/invalidation_interface.cc', 73 'internal_api/public/base/invalidation_interface.cc',
68 'internal_api/public/base/invalidation_interface.h', 74 'internal_api/public/base/invalidation_interface.h',
75 'internal_api/public/base/invalidation_util.cc',
76 'internal_api/public/base/invalidation_util.h',
69 'internal_api/public/base/invalidator_state.cc', 77 'internal_api/public/base/invalidator_state.cc',
70 'internal_api/public/base/invalidator_state.h', 78 'internal_api/public/base/invalidator_state.h',
71 'internal_api/public/base/model_type.h', 79 'internal_api/public/base/model_type.h',
72 'internal_api/public/base/node_ordinal.cc', 80 'internal_api/public/base/node_ordinal.cc',
73 'internal_api/public/base/node_ordinal.h', 81 'internal_api/public/base/node_ordinal.h',
74 'internal_api/public/base/ordinal.h', 82 'internal_api/public/base/ordinal.h',
75 'internal_api/public/base/progress_marker_map.cc', 83 'internal_api/public/base/progress_marker_map.cc',
76 'internal_api/public/base/progress_marker_map.h', 84 'internal_api/public/base/progress_marker_map.h',
77 'internal_api/public/base/unique_position.cc', 85 'internal_api/public/base/unique_position.cc',
78 'internal_api/public/base/unique_position.h', 86 'internal_api/public/base/unique_position.h',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 'internal_api/sync_rollback_manager.h', 173 'internal_api/sync_rollback_manager.h',
166 'internal_api/syncapi_internal.cc', 174 'internal_api/syncapi_internal.cc',
167 'internal_api/syncapi_internal.h', 175 'internal_api/syncapi_internal.h',
168 'internal_api/syncapi_server_connection_manager.cc', 176 'internal_api/syncapi_server_connection_manager.cc',
169 'internal_api/syncapi_server_connection_manager.h', 177 'internal_api/syncapi_server_connection_manager.h',
170 'internal_api/user_share.cc', 178 'internal_api/user_share.cc',
171 'internal_api/write_node.cc', 179 'internal_api/write_node.cc',
172 'internal_api/write_transaction.cc', 180 'internal_api/write_transaction.cc',
173 ], 181 ],
174 } 182 }
OLDNEW
« no previous file with comments | « sync/sync.gyp ('k') | sync/sync_notifier.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698