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

Side by Side Diff: blimp/net/BUILD.gn

Issue 2400303002: Add LwwRegister CRDT (Closed)
Patch Set: Refactor Serializer to use overloaded methods and add unit tests. Refactor LwwRegister to not be te… Created 4 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 | « no previous file | blimp/net/helium/lww_register.h » ('j') | blimp/net/helium/lww_register.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 component("net") { 5 component("net") {
6 output_name = "blimp_net" 6 output_name = "blimp_net"
7 sources = [ 7 sources = [
8 "blimp_connection.cc", 8 "blimp_connection.cc",
9 "blimp_connection.h", 9 "blimp_connection.h",
10 "blimp_message_checkpoint_observer.h", 10 "blimp_message_checkpoint_observer.h",
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 94
95 source_set("helium") { 95 source_set("helium") {
96 sources = [ 96 sources = [
97 "helium/helium_errors.h", 97 "helium/helium_errors.h",
98 "helium/helium_result.cc", 98 "helium/helium_result.cc",
99 "helium/helium_result.h", 99 "helium/helium_result.h",
100 "helium/helium_stream.h", 100 "helium/helium_stream.h",
101 "helium/helium_sync_manager.cc", 101 "helium/helium_sync_manager.cc",
102 "helium/helium_sync_manager.h", 102 "helium/helium_sync_manager.h",
103 "helium/helium_transport.h", 103 "helium/helium_transport.h",
104 "helium/lww_register.h",
104 "helium/syncable.h", 105 "helium/syncable.h",
106 "helium/syncable_common.h",
107 "helium/syncable_primitive_serializer.cc",
108 "helium/syncable_primitive_serializer.h",
105 "helium/version_vector.cc", 109 "helium/version_vector.cc",
106 "helium/version_vector.h", 110 "helium/version_vector.h",
107 "helium/version_vector_generator.h", 111 "helium/version_vector_generator.h",
108 ] 112 ]
109 deps = [ 113 deps = [
110 ":net_export", 114 ":net_export",
111 "//base", 115 "//base",
112 "//blimp/common", 116 "//blimp/common",
113 "//net", 117 "//net",
114 ] 118 ]
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 "blob_channel/blob_channel_receiver_unittest.cc", 167 "blob_channel/blob_channel_receiver_unittest.cc",
164 "blob_channel/blob_channel_sender_unittest.cc", 168 "blob_channel/blob_channel_sender_unittest.cc",
165 "blob_channel/helium_blob_channel_unittest.cc", 169 "blob_channel/helium_blob_channel_unittest.cc",
166 "browser_connection_handler_unittest.cc", 170 "browser_connection_handler_unittest.cc",
167 "client_connection_manager_unittest.cc", 171 "client_connection_manager_unittest.cc",
168 "compressed_packet_unittest.cc", 172 "compressed_packet_unittest.cc",
169 "delta_encoding_unittest.cc", 173 "delta_encoding_unittest.cc",
170 "engine_authentication_handler_unittest.cc", 174 "engine_authentication_handler_unittest.cc",
171 "engine_connection_manager_unittest.cc", 175 "engine_connection_manager_unittest.cc",
172 "helium/helium_result_unittest.cc", 176 "helium/helium_result_unittest.cc",
177 "helium/lww_register_unittest.cc",
178 "helium/syncable_primitive_serializer_unittest.cc",
173 "helium/syncable_unittest.cc", 179 "helium/syncable_unittest.cc",
174 "helium/version_vector_generator_unittest.cc", 180 "helium/version_vector_generator_unittest.cc",
175 "helium/version_vector_unittest.cc", 181 "helium/version_vector_unittest.cc",
176 "input_message_unittest.cc", 182 "input_message_unittest.cc",
177 "ssl_client_transport_unittest.cc", 183 "ssl_client_transport_unittest.cc",
178 "stream_packet_reader_unittest.cc", 184 "stream_packet_reader_unittest.cc",
179 "stream_packet_writer_unittest.cc", 185 "stream_packet_writer_unittest.cc",
180 "tcp_transport_unittest.cc", 186 "tcp_transport_unittest.cc",
181 "thread_pipe_manager_unittest.cc", 187 "thread_pipe_manager_unittest.cc",
182 ] 188 ]
183 189
184 deps = [ 190 deps = [
185 ":helium", 191 ":helium",
186 ":net", 192 ":net",
187 ":test_support", 193 ":test_support",
188 "//base", 194 "//base",
189 "//base/test:test_support", 195 "//base/test:test_support",
190 "//blimp/common", 196 "//blimp/common",
191 "//blimp/common:test_support", 197 "//blimp/common:test_support",
192 "//blimp/common/proto", 198 "//blimp/common/proto",
193 "//net:test_support", 199 "//net:test_support",
194 "//testing/gmock", 200 "//testing/gmock",
195 "//testing/gtest", 201 "//testing/gtest",
196 "//third_party/WebKit/public:blink_headers", 202 "//third_party/WebKit/public:blink_headers",
197 "//third_party/protobuf:protobuf_lite", 203 "//third_party/protobuf:protobuf_lite",
198 ] 204 ]
199 } 205 }
OLDNEW
« no previous file with comments | « no previous file | blimp/net/helium/lww_register.h » ('j') | blimp/net/helium/lww_register.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698