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

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

Issue 2462183002: GRPC Stream implementation of HeliumStream
Patch Set: Fixed a few minor comments Created 4 years, 1 month 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
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_engine_transport.h", 10 "blimp_engine_transport.h",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "compressed_packet_writer.h", 46 "compressed_packet_writer.h",
47 "connection_error_observer.h", 47 "connection_error_observer.h",
48 "connection_handler.h", 48 "connection_handler.h",
49 "delta_encoding.h", 49 "delta_encoding.h",
50 "engine_authentication_handler.cc", 50 "engine_authentication_handler.cc",
51 "engine_authentication_handler.h", 51 "engine_authentication_handler.h",
52 "engine_connection_manager.cc", 52 "engine_connection_manager.cc",
53 "engine_connection_manager.h", 53 "engine_connection_manager.h",
54 "exact_match_cert_verifier.cc", 54 "exact_match_cert_verifier.cc",
55 "exact_match_cert_verifier.h", 55 "exact_match_cert_verifier.h",
56 "grpc_client_stream.cc",
57 "grpc_client_stream.h",
58 "grpc_client_transport.cc",
59 "grpc_client_transport.h",
60 "grpc_connection.cc",
61 "grpc_connection.h",
62 "grpc_engine_stream.cc",
63 "grpc_engine_stream.h",
64 "grpc_engine_transport.cc",
65 "grpc_engine_transport.h",
66 "grpc_stream.cc",
67 "grpc_stream.h",
56 "input_message_converter.cc", 68 "input_message_converter.cc",
57 "input_message_converter.h", 69 "input_message_converter.h",
58 "input_message_generator.cc", 70 "input_message_generator.cc",
59 "input_message_generator.h", 71 "input_message_generator.h",
60 "message_port.cc", 72 "message_port.cc",
61 "message_port.h", 73 "message_port.h",
62 "null_blimp_message_processor.cc", 74 "null_blimp_message_processor.cc",
63 "null_blimp_message_processor.h", 75 "null_blimp_message_processor.h",
64 "ssl_client_transport.cc", 76 "ssl_client_transport.cc",
65 "ssl_client_transport.h", 77 "ssl_client_transport.h",
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 "blob_channel/blob_channel_integration_test.cc", 152 "blob_channel/blob_channel_integration_test.cc",
141 "blob_channel/blob_channel_receiver_unittest.cc", 153 "blob_channel/blob_channel_receiver_unittest.cc",
142 "blob_channel/blob_channel_sender_unittest.cc", 154 "blob_channel/blob_channel_sender_unittest.cc",
143 "blob_channel/helium_blob_channel_unittest.cc", 155 "blob_channel/helium_blob_channel_unittest.cc",
144 "browser_connection_handler_unittest.cc", 156 "browser_connection_handler_unittest.cc",
145 "client_connection_manager_unittest.cc", 157 "client_connection_manager_unittest.cc",
146 "compressed_packet_unittest.cc", 158 "compressed_packet_unittest.cc",
147 "delta_encoding_unittest.cc", 159 "delta_encoding_unittest.cc",
148 "engine_authentication_handler_unittest.cc", 160 "engine_authentication_handler_unittest.cc",
149 "engine_connection_manager_unittest.cc", 161 "engine_connection_manager_unittest.cc",
162 "grpc_connection_unittest.cc",
163 "grpc_stream_unittest.cc",
150 "input_message_unittest.cc", 164 "input_message_unittest.cc",
151 "ssl_client_transport_unittest.cc", 165 "ssl_client_transport_unittest.cc",
152 "stream_packet_reader_unittest.cc", 166 "stream_packet_reader_unittest.cc",
153 "stream_packet_writer_unittest.cc", 167 "stream_packet_writer_unittest.cc",
154 "tcp_connection_unittest.cc", 168 "tcp_connection_unittest.cc",
155 "tcp_transport_unittest.cc", 169 "tcp_transport_unittest.cc",
156 "thread_pipe_manager_unittest.cc", 170 "thread_pipe_manager_unittest.cc",
157 ] 171 ]
158 172
159 deps = [ 173 deps = [
160 ":net", 174 ":net",
161 ":test_support", 175 ":test_support",
162 "//base", 176 "//base",
163 "//base/test:test_support", 177 "//base/test:test_support",
164 "//blimp/common", 178 "//blimp/common",
165 "//blimp/common:test_support", 179 "//blimp/common:test_support",
166 "//blimp/common/proto", 180 "//blimp/common/proto",
167 "//net:test_support", 181 "//net:test_support",
168 "//testing/gmock", 182 "//testing/gmock",
169 "//testing/gtest", 183 "//testing/gtest",
170 "//third_party/WebKit/public:blink_headers", 184 "//third_party/WebKit/public:blink_headers",
171 "//third_party/grpc:grpc++_unsecure", 185 "//third_party/grpc:grpc++_unsecure",
172 ] 186 ]
173 } 187 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698