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 28 matching lines...) Expand all Loading... |
39 "client_connection_manager.cc", | 39 "client_connection_manager.cc", |
40 "client_connection_manager.h", | 40 "client_connection_manager.h", |
41 "common.cc", | 41 "common.cc", |
42 "common.h", | 42 "common.h", |
43 "compressed_packet_reader.cc", | 43 "compressed_packet_reader.cc", |
44 "compressed_packet_reader.h", | 44 "compressed_packet_reader.h", |
45 "compressed_packet_writer.cc", | 45 "compressed_packet_writer.cc", |
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 "engine_authentication_handler.cc", | 50 "engine_authentication_handler.cc", |
50 "engine_authentication_handler.h", | 51 "engine_authentication_handler.h", |
51 "engine_connection_manager.cc", | 52 "engine_connection_manager.cc", |
52 "engine_connection_manager.h", | 53 "engine_connection_manager.h", |
53 "exact_match_cert_verifier.cc", | 54 "exact_match_cert_verifier.cc", |
54 "exact_match_cert_verifier.h", | 55 "exact_match_cert_verifier.h", |
55 "input_message_converter.cc", | 56 "input_message_converter.cc", |
56 "input_message_converter.h", | 57 "input_message_converter.h", |
57 "input_message_generator.cc", | 58 "input_message_generator.cc", |
58 "input_message_generator.h", | 59 "input_message_generator.h", |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 "blimp_message_pump_unittest.cc", | 126 "blimp_message_pump_unittest.cc", |
126 "blimp_message_thread_pipe_unittest.cc", | 127 "blimp_message_thread_pipe_unittest.cc", |
127 "blimp_stats_unittest.cc", | 128 "blimp_stats_unittest.cc", |
128 "blob_channel/blob_channel_integration_test.cc", | 129 "blob_channel/blob_channel_integration_test.cc", |
129 "blob_channel/blob_channel_receiver_unittest.cc", | 130 "blob_channel/blob_channel_receiver_unittest.cc", |
130 "blob_channel/blob_channel_sender_unittest.cc", | 131 "blob_channel/blob_channel_sender_unittest.cc", |
131 "blob_channel/helium_blob_channel_unittest.cc", | 132 "blob_channel/helium_blob_channel_unittest.cc", |
132 "browser_connection_handler_unittest.cc", | 133 "browser_connection_handler_unittest.cc", |
133 "client_connection_manager_unittest.cc", | 134 "client_connection_manager_unittest.cc", |
134 "compressed_packet_unittest.cc", | 135 "compressed_packet_unittest.cc", |
| 136 "delta_encoding_unittest.cc", |
135 "engine_authentication_handler_unittest.cc", | 137 "engine_authentication_handler_unittest.cc", |
136 "engine_connection_manager_unittest.cc", | 138 "engine_connection_manager_unittest.cc", |
137 "input_message_unittest.cc", | 139 "input_message_unittest.cc", |
138 "ssl_client_transport_unittest.cc", | 140 "ssl_client_transport_unittest.cc", |
139 "stream_packet_reader_unittest.cc", | 141 "stream_packet_reader_unittest.cc", |
140 "stream_packet_writer_unittest.cc", | 142 "stream_packet_writer_unittest.cc", |
141 "tcp_transport_unittest.cc", | 143 "tcp_transport_unittest.cc", |
142 "thread_pipe_manager_unittest.cc", | 144 "thread_pipe_manager_unittest.cc", |
143 ] | 145 ] |
144 | 146 |
145 deps = [ | 147 deps = [ |
146 ":net", | 148 ":net", |
147 ":test_support", | 149 ":test_support", |
148 "//base", | 150 "//base", |
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 |