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("blimp_net") { | 5 component("blimp_net") { |
6 sources = [ | 6 sources = [ |
7 "blimp_connection.cc", | 7 "blimp_connection.cc", |
8 "blimp_connection.h", | 8 "blimp_connection.h", |
9 "blimp_message_checkpoint_observer.h", | 9 "blimp_message_checkpoint_observer.h", |
10 "blimp_message_demultiplexer.cc", | 10 "blimp_message_demultiplexer.cc", |
(...skipping 15 matching lines...) Expand all Loading... |
26 "common.cc", | 26 "common.cc", |
27 "common.h", | 27 "common.h", |
28 "connection_error_observer.h", | 28 "connection_error_observer.h", |
29 "connection_handler.h", | 29 "connection_handler.h", |
30 "engine_connection_manager.cc", | 30 "engine_connection_manager.cc", |
31 "engine_connection_manager.h", | 31 "engine_connection_manager.h", |
32 "input_message_generator.cc", | 32 "input_message_generator.cc", |
33 "input_message_generator.h", | 33 "input_message_generator.h", |
34 "input_message_processor.cc", | 34 "input_message_processor.cc", |
35 "input_message_processor.h", | 35 "input_message_processor.h", |
| 36 "null_blimp_message_processor.cc", |
| 37 "null_blimp_message_processor.h", |
36 "stream_packet_reader.cc", | 38 "stream_packet_reader.cc", |
37 "stream_packet_reader.h", | 39 "stream_packet_reader.h", |
38 "stream_packet_writer.cc", | 40 "stream_packet_writer.cc", |
39 "stream_packet_writer.h", | 41 "stream_packet_writer.h", |
40 "stream_socket_connection.cc", | 42 "stream_socket_connection.cc", |
41 "stream_socket_connection.h", | 43 "stream_socket_connection.h", |
42 "tcp_client_transport.cc", | 44 "tcp_client_transport.cc", |
43 "tcp_client_transport.h", | 45 "tcp_client_transport.h", |
44 "tcp_engine_transport.cc", | 46 "tcp_engine_transport.cc", |
45 "tcp_engine_transport.h", | 47 "tcp_engine_transport.h", |
(...skipping 28 matching lines...) Expand all Loading... |
74 ":blimp_net", | 76 ":blimp_net", |
75 "//base", | 77 "//base", |
76 "//base/test:run_all_unittests", | 78 "//base/test:run_all_unittests", |
77 "//base/test:test_support", | 79 "//base/test:test_support", |
78 "//blimp/common/proto", | 80 "//blimp/common/proto", |
79 "//net:test_support", | 81 "//net:test_support", |
80 "//testing/gmock", | 82 "//testing/gmock", |
81 "//testing/gtest", | 83 "//testing/gtest", |
82 ] | 84 ] |
83 } | 85 } |
OLD | NEW |