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

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

Issue 2382533002: Helium: Initial proto and Syncable interface definition (Closed)
Patch Set: test changes 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 | « blimp/common/proto/helium.proto ('k') | blimp/net/helium/syncable.h » ('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 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 ] 92 ]
93 } 93 }
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_sync_manager.cc", 100 "helium/helium_sync_manager.cc",
101 "helium/helium_sync_manager.h", 101 "helium/helium_sync_manager.h",
102 "helium/syncable.h",
102 "helium/vector_clock.cc", 103 "helium/vector_clock.cc",
103 "helium/vector_clock.h", 104 "helium/vector_clock.h",
105 "helium/vector_clock_generator.h",
104 ] 106 ]
105 deps = [ 107 deps = [
106 ":net_export", 108 ":net_export",
107 "//base", 109 "//base",
108 "//blimp/common", 110 "//blimp/common",
109 ] 111 ]
110 112
111 public_deps = [ 113 public_deps = [
112 "//blimp/common/proto", 114 "//blimp/common/proto",
113 ] 115 ]
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "blob_channel/blob_channel_receiver_unittest.cc", 160 "blob_channel/blob_channel_receiver_unittest.cc",
159 "blob_channel/blob_channel_sender_unittest.cc", 161 "blob_channel/blob_channel_sender_unittest.cc",
160 "blob_channel/helium_blob_channel_unittest.cc", 162 "blob_channel/helium_blob_channel_unittest.cc",
161 "browser_connection_handler_unittest.cc", 163 "browser_connection_handler_unittest.cc",
162 "client_connection_manager_unittest.cc", 164 "client_connection_manager_unittest.cc",
163 "compressed_packet_unittest.cc", 165 "compressed_packet_unittest.cc",
164 "delta_encoding_unittest.cc", 166 "delta_encoding_unittest.cc",
165 "engine_authentication_handler_unittest.cc", 167 "engine_authentication_handler_unittest.cc",
166 "engine_connection_manager_unittest.cc", 168 "engine_connection_manager_unittest.cc",
167 "helium/helium_result_unittest.cc", 169 "helium/helium_result_unittest.cc",
170 "helium/syncable_unittest.cc",
171 "helium/vector_clock_generator_unittest.cc",
168 "helium/vector_clock_unittest.cc", 172 "helium/vector_clock_unittest.cc",
169 "input_message_unittest.cc", 173 "input_message_unittest.cc",
170 "ssl_client_transport_unittest.cc", 174 "ssl_client_transport_unittest.cc",
171 "stream_packet_reader_unittest.cc", 175 "stream_packet_reader_unittest.cc",
172 "stream_packet_writer_unittest.cc", 176 "stream_packet_writer_unittest.cc",
173 "tcp_transport_unittest.cc", 177 "tcp_transport_unittest.cc",
174 "thread_pipe_manager_unittest.cc", 178 "thread_pipe_manager_unittest.cc",
175 ] 179 ]
176 180
177 deps = [ 181 deps = [
178 ":helium", 182 ":helium",
179 ":net", 183 ":net",
180 ":test_support", 184 ":test_support",
181 "//base", 185 "//base",
182 "//base/test:test_support", 186 "//base/test:test_support",
183 "//blimp/common", 187 "//blimp/common",
184 "//blimp/common:test_support", 188 "//blimp/common:test_support",
185 "//blimp/common/proto", 189 "//blimp/common/proto",
186 "//net:test_support", 190 "//net:test_support",
187 "//testing/gmock", 191 "//testing/gmock",
188 "//testing/gtest", 192 "//testing/gtest",
189 "//third_party/WebKit/public:blink_headers", 193 "//third_party/WebKit/public:blink_headers",
190 ] 194 ]
191 } 195 }
OLDNEW
« no previous file with comments | « blimp/common/proto/helium.proto ('k') | blimp/net/helium/syncable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698