| OLD | NEW |
| 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 Loading... |
| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "//blimp/common", | 176 "//blimp/common", |
| 165 "//blimp/common:test_support", | 177 "//blimp/common:test_support", |
| 166 "//blimp/common/proto", | 178 "//blimp/common/proto", |
| 167 "//net:test_support", | 179 "//net:test_support", |
| 168 "//testing/gmock", | 180 "//testing/gmock", |
| 169 "//testing/gtest", | 181 "//testing/gtest", |
| 170 "//third_party/WebKit/public:blink_headers", | 182 "//third_party/WebKit/public:blink_headers", |
| 171 "//third_party/grpc:grpc++_unsecure", | 183 "//third_party/grpc:grpc++_unsecure", |
| 172 ] | 184 ] |
| 173 } | 185 } |
| OLD | NEW |