| 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", |
| 11 "blimp_message_checkpointer.h", | 11 "blimp_message_checkpointer.h", |
| 12 "blimp_message_demultiplexer.cc", | 12 "blimp_message_demultiplexer.cc", |
| 13 "blimp_message_demultiplexer.h", | 13 "blimp_message_demultiplexer.h", |
| 14 "blimp_message_multiplexer.cc", | 14 "blimp_message_multiplexer.cc", |
| 15 "blimp_message_multiplexer.h", | 15 "blimp_message_multiplexer.h", |
| 16 "blimp_message_output_buffer.cc", | 16 "blimp_message_output_buffer.cc", |
| 17 "blimp_message_output_buffer.h", | 17 "blimp_message_output_buffer.h", |
| 18 "blimp_message_processor.h", | 18 "blimp_message_processor.h", |
| 19 "blimp_message_pump.cc", | 19 "blimp_message_pump.cc", |
| 20 "blimp_message_pump.h", | 20 "blimp_message_pump.h", |
| 21 "blimp_message_thread_pipe.cc", | 21 "blimp_message_thread_pipe.cc", |
| 22 "blimp_message_thread_pipe.h", | 22 "blimp_message_thread_pipe.h", |
| 23 "blimp_net_export.h", | 23 "blimp_net_export.h", |
| 24 "blimp_transport.h", | 24 "blimp_transport.h", |
| 25 "blob_channel/blob_channel_receiver.cc", |
| 26 "blob_channel/blob_channel_receiver.h", |
| 25 "blob_channel/blob_channel_sender.cc", | 27 "blob_channel/blob_channel_sender.cc", |
| 26 "blob_channel/blob_channel_sender.h", | 28 "blob_channel/blob_channel_sender.h", |
| 27 "blob_channel/types.h", | 29 "blob_channel/types.h", |
| 28 "browser_connection_handler.cc", | 30 "browser_connection_handler.cc", |
| 29 "browser_connection_handler.h", | 31 "browser_connection_handler.h", |
| 30 "client_connection_manager.cc", | 32 "client_connection_manager.cc", |
| 31 "client_connection_manager.h", | 33 "client_connection_manager.h", |
| 32 "common.cc", | 34 "common.cc", |
| 33 "common.h", | 35 "common.h", |
| 34 "compressed_packet_reader.cc", | 36 "compressed_packet_reader.cc", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 testonly = true | 99 testonly = true |
| 98 | 100 |
| 99 sources = [ | 101 sources = [ |
| 100 "blimp_connection_unittest.cc", | 102 "blimp_connection_unittest.cc", |
| 101 "blimp_message_checkpointer_unittest.cc", | 103 "blimp_message_checkpointer_unittest.cc", |
| 102 "blimp_message_demultiplexer_unittest.cc", | 104 "blimp_message_demultiplexer_unittest.cc", |
| 103 "blimp_message_multiplexer_unittest.cc", | 105 "blimp_message_multiplexer_unittest.cc", |
| 104 "blimp_message_output_buffer_unittest.cc", | 106 "blimp_message_output_buffer_unittest.cc", |
| 105 "blimp_message_pump_unittest.cc", | 107 "blimp_message_pump_unittest.cc", |
| 106 "blimp_message_thread_pipe_unittest.cc", | 108 "blimp_message_thread_pipe_unittest.cc", |
| 109 "blob_channel/blob_channel_receiver_unittest.cc", |
| 107 "blob_channel/blob_channel_sender_unittest.cc", | 110 "blob_channel/blob_channel_sender_unittest.cc", |
| 108 "browser_connection_handler_unittest.cc", | 111 "browser_connection_handler_unittest.cc", |
| 109 "client_connection_manager_unittest.cc", | 112 "client_connection_manager_unittest.cc", |
| 110 "compressed_packet_unittest.cc", | 113 "compressed_packet_unittest.cc", |
| 111 "engine_authentication_handler_unittest.cc", | 114 "engine_authentication_handler_unittest.cc", |
| 112 "engine_connection_manager_unittest.cc", | 115 "engine_connection_manager_unittest.cc", |
| 113 "input_message_unittest.cc", | 116 "input_message_unittest.cc", |
| 114 "ssl_client_transport_unittest.cc", | 117 "ssl_client_transport_unittest.cc", |
| 115 "stream_packet_reader_unittest.cc", | 118 "stream_packet_reader_unittest.cc", |
| 116 "stream_packet_writer_unittest.cc", | 119 "stream_packet_writer_unittest.cc", |
| 117 "tcp_transport_unittest.cc", | 120 "tcp_transport_unittest.cc", |
| 118 "thread_pipe_manager_unittest.cc", | 121 "thread_pipe_manager_unittest.cc", |
| 119 ] | 122 ] |
| 120 | 123 |
| 121 deps = [ | 124 deps = [ |
| 122 ":blimp_net", | 125 ":blimp_net", |
| 123 ":test_support", | 126 ":test_support", |
| 124 "//base", | 127 "//base", |
| 125 "//base/test:run_all_unittests", | 128 "//base/test:run_all_unittests", |
| 126 "//base/test:test_support", | 129 "//base/test:test_support", |
| 127 "//blimp/common:blimp_common", | 130 "//blimp/common:blimp_common", |
| 128 "//blimp/common/proto", | 131 "//blimp/common/proto", |
| 129 "//net:test_support", | 132 "//net:test_support", |
| 130 "//testing/gmock", | 133 "//testing/gmock", |
| 131 "//testing/gtest", | 134 "//testing/gtest", |
| 132 ] | 135 ] |
| 133 } | 136 } |
| OLD | NEW |