| 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 13 matching lines...) Expand all Loading... |
| 24 "common.cc", | 24 "common.cc", |
| 25 "common.h", | 25 "common.h", |
| 26 "connection_error_observer.h", | 26 "connection_error_observer.h", |
| 27 "connection_handler.h", | 27 "connection_handler.h", |
| 28 "engine_connection_manager.cc", | 28 "engine_connection_manager.cc", |
| 29 "engine_connection_manager.h", | 29 "engine_connection_manager.h", |
| 30 "input_message_generator.cc", | 30 "input_message_generator.cc", |
| 31 "input_message_generator.h", | 31 "input_message_generator.h", |
| 32 "input_message_processor.cc", | 32 "input_message_processor.cc", |
| 33 "input_message_processor.h", | 33 "input_message_processor.h", |
| 34 "null_blimp_message_processor.cc", |
| 35 "null_blimp_message_processor.h", |
| 34 "stream_packet_reader.cc", | 36 "stream_packet_reader.cc", |
| 35 "stream_packet_reader.h", | 37 "stream_packet_reader.h", |
| 36 "stream_packet_writer.cc", | 38 "stream_packet_writer.cc", |
| 37 "stream_packet_writer.h", | 39 "stream_packet_writer.h", |
| 38 "stream_socket_connection.cc", | 40 "stream_socket_connection.cc", |
| 39 "stream_socket_connection.h", | 41 "stream_socket_connection.h", |
| 40 "tcp_client_transport.cc", | 42 "tcp_client_transport.cc", |
| 41 "tcp_client_transport.h", | 43 "tcp_client_transport.h", |
| 42 "tcp_engine_transport.cc", | 44 "tcp_engine_transport.cc", |
| 43 "tcp_engine_transport.h", | 45 "tcp_engine_transport.h", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 72 ":blimp_net", | 74 ":blimp_net", |
| 73 "//base", | 75 "//base", |
| 74 "//base/test:run_all_unittests", | 76 "//base/test:run_all_unittests", |
| 75 "//base/test:test_support", | 77 "//base/test:test_support", |
| 76 "//blimp/common/proto", | 78 "//blimp/common/proto", |
| 77 "//net:test_support", | 79 "//net:test_support", |
| 78 "//testing/gmock", | 80 "//testing/gmock", |
| 79 "//testing/gtest", | 81 "//testing/gtest", |
| 80 ] | 82 ] |
| 81 } | 83 } |
| OLD | NEW |