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_message_checkpoint_observer.h", | 10 "blimp_message_checkpoint_observer.h", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "engine_authentication_handler.cc", | 49 "engine_authentication_handler.cc", |
50 "engine_authentication_handler.h", | 50 "engine_authentication_handler.h", |
51 "engine_connection_manager.cc", | 51 "engine_connection_manager.cc", |
52 "engine_connection_manager.h", | 52 "engine_connection_manager.h", |
53 "exact_match_cert_verifier.cc", | 53 "exact_match_cert_verifier.cc", |
54 "exact_match_cert_verifier.h", | 54 "exact_match_cert_verifier.h", |
55 "input_message_converter.cc", | 55 "input_message_converter.cc", |
56 "input_message_converter.h", | 56 "input_message_converter.h", |
57 "input_message_generator.cc", | 57 "input_message_generator.cc", |
58 "input_message_generator.h", | 58 "input_message_generator.h", |
| 59 "message_port.cc", |
| 60 "message_port.h", |
| 61 "message_port_util.cc", |
| 62 "message_port_util.h", |
59 "null_blimp_message_processor.cc", | 63 "null_blimp_message_processor.cc", |
60 "null_blimp_message_processor.h", | 64 "null_blimp_message_processor.h", |
61 "ssl_client_transport.cc", | 65 "ssl_client_transport.cc", |
62 "ssl_client_transport.h", | 66 "ssl_client_transport.h", |
63 "stream_packet_reader.cc", | 67 "stream_packet_reader.cc", |
64 "stream_packet_reader.h", | 68 "stream_packet_reader.h", |
65 "stream_packet_writer.cc", | 69 "stream_packet_writer.cc", |
66 "stream_packet_writer.h", | 70 "stream_packet_writer.h", |
67 "stream_socket_connection.cc", | |
68 "stream_socket_connection.h", | |
69 "tcp_client_transport.cc", | 71 "tcp_client_transport.cc", |
70 "tcp_client_transport.h", | 72 "tcp_client_transport.h", |
71 "tcp_engine_transport.cc", | 73 "tcp_engine_transport.cc", |
72 "tcp_engine_transport.h", | 74 "tcp_engine_transport.h", |
73 "thread_pipe_manager.cc", | 75 "thread_pipe_manager.cc", |
74 "thread_pipe_manager.h", | 76 "thread_pipe_manager.h", |
75 ] | 77 ] |
76 | 78 |
77 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] | 79 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] |
78 | 80 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 "//base/test:test_support", | 151 "//base/test:test_support", |
150 "//blimp/common", | 152 "//blimp/common", |
151 "//blimp/common:test_support", | 153 "//blimp/common:test_support", |
152 "//blimp/common/proto", | 154 "//blimp/common/proto", |
153 "//net:test_support", | 155 "//net:test_support", |
154 "//testing/gmock", | 156 "//testing/gmock", |
155 "//testing/gtest", | 157 "//testing/gtest", |
156 "//third_party/WebKit/public:blink_headers", | 158 "//third_party/WebKit/public:blink_headers", |
157 ] | 159 ] |
158 } | 160 } |
OLD | NEW |