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