| 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_checkpointer.cc", | 10 "blimp_message_checkpointer.cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 "client_connection_manager.cc", | 27 "client_connection_manager.cc", |
| 28 "client_connection_manager.h", | 28 "client_connection_manager.h", |
| 29 "common.cc", | 29 "common.cc", |
| 30 "common.h", | 30 "common.h", |
| 31 "connection_error_observer.h", | 31 "connection_error_observer.h", |
| 32 "connection_handler.h", | 32 "connection_handler.h", |
| 33 "engine_authentication_handler.cc", | 33 "engine_authentication_handler.cc", |
| 34 "engine_authentication_handler.h", | 34 "engine_authentication_handler.h", |
| 35 "engine_connection_manager.cc", | 35 "engine_connection_manager.cc", |
| 36 "engine_connection_manager.h", | 36 "engine_connection_manager.h", |
| 37 "exact_match_cert_verifier.cc", | |
| 38 "exact_match_cert_verifier.h", | |
| 39 "input_message_converter.cc", | 37 "input_message_converter.cc", |
| 40 "input_message_converter.h", | 38 "input_message_converter.h", |
| 41 "input_message_generator.cc", | 39 "input_message_generator.cc", |
| 42 "input_message_generator.h", | 40 "input_message_generator.h", |
| 43 "null_blimp_message_processor.cc", | 41 "null_blimp_message_processor.cc", |
| 44 "null_blimp_message_processor.h", | 42 "null_blimp_message_processor.h", |
| 45 "ssl_client_transport.cc", | |
| 46 "ssl_client_transport.h", | |
| 47 "stream_packet_reader.cc", | 43 "stream_packet_reader.cc", |
| 48 "stream_packet_reader.h", | 44 "stream_packet_reader.h", |
| 49 "stream_packet_writer.cc", | 45 "stream_packet_writer.cc", |
| 50 "stream_packet_writer.h", | 46 "stream_packet_writer.h", |
| 51 "stream_socket_connection.cc", | 47 "stream_socket_connection.cc", |
| 52 "stream_socket_connection.h", | 48 "stream_socket_connection.h", |
| 53 "tcp_client_transport.cc", | 49 "tcp_client_transport.cc", |
| 54 "tcp_client_transport.h", | 50 "tcp_client_transport.h", |
| 55 "tcp_engine_transport.cc", | 51 "tcp_engine_transport.cc", |
| 56 "tcp_engine_transport.h", | 52 "tcp_engine_transport.h", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 "blimp_message_demultiplexer_unittest.cc", | 87 "blimp_message_demultiplexer_unittest.cc", |
| 92 "blimp_message_multiplexer_unittest.cc", | 88 "blimp_message_multiplexer_unittest.cc", |
| 93 "blimp_message_output_buffer_unittest.cc", | 89 "blimp_message_output_buffer_unittest.cc", |
| 94 "blimp_message_pump_unittest.cc", | 90 "blimp_message_pump_unittest.cc", |
| 95 "blimp_message_thread_pipe_unittest.cc", | 91 "blimp_message_thread_pipe_unittest.cc", |
| 96 "browser_connection_handler_unittest.cc", | 92 "browser_connection_handler_unittest.cc", |
| 97 "client_connection_manager_unittest.cc", | 93 "client_connection_manager_unittest.cc", |
| 98 "engine_authentication_handler_unittest.cc", | 94 "engine_authentication_handler_unittest.cc", |
| 99 "engine_connection_manager_unittest.cc", | 95 "engine_connection_manager_unittest.cc", |
| 100 "input_message_unittest.cc", | 96 "input_message_unittest.cc", |
| 101 "ssl_client_transport_unittest.cc", | |
| 102 "stream_packet_reader_unittest.cc", | 97 "stream_packet_reader_unittest.cc", |
| 103 "stream_packet_writer_unittest.cc", | 98 "stream_packet_writer_unittest.cc", |
| 104 "tcp_transport_unittest.cc", | 99 "tcp_transport_unittest.cc", |
| 105 ] | 100 ] |
| 106 | 101 |
| 107 deps = [ | 102 deps = [ |
| 108 ":blimp_net", | 103 ":blimp_net", |
| 109 ":test_support", | 104 ":test_support", |
| 110 "//base", | 105 "//base", |
| 111 "//base/test:run_all_unittests", | 106 "//base/test:run_all_unittests", |
| 112 "//base/test:test_support", | 107 "//base/test:test_support", |
| 113 "//blimp/common:blimp_common", | 108 "//blimp/common:blimp_common", |
| 114 "//blimp/common/proto", | 109 "//blimp/common/proto", |
| 115 "//net:test_support", | 110 "//net:test_support", |
| 116 "//testing/gmock", | 111 "//testing/gmock", |
| 117 "//testing/gtest", | 112 "//testing/gtest", |
| 118 ] | 113 ] |
| 119 } | 114 } |
| OLD | NEW |