| 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", |
| 27 "blob_channel/blob_channel_receiver.h", |
| 26 "browser_connection_handler.cc", | 28 "browser_connection_handler.cc", |
| 27 "browser_connection_handler.h", | 29 "browser_connection_handler.h", |
| 28 "client_connection_manager.cc", | 30 "client_connection_manager.cc", |
| 29 "client_connection_manager.h", | 31 "client_connection_manager.h", |
| 30 "common.cc", | 32 "common.cc", |
| 31 "common.h", | 33 "common.h", |
| 32 "compressed_packet_reader.cc", | 34 "compressed_packet_reader.cc", |
| 33 "compressed_packet_reader.h", | 35 "compressed_packet_reader.h", |
| 34 "compressed_packet_writer.cc", | 36 "compressed_packet_writer.cc", |
| 35 "compressed_packet_writer.h", | 37 "compressed_packet_writer.h", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 testonly = true | 98 testonly = true |
| 97 | 99 |
| 98 sources = [ | 100 sources = [ |
| 99 "blimp_connection_unittest.cc", | 101 "blimp_connection_unittest.cc", |
| 100 "blimp_message_checkpointer_unittest.cc", | 102 "blimp_message_checkpointer_unittest.cc", |
| 101 "blimp_message_demultiplexer_unittest.cc", | 103 "blimp_message_demultiplexer_unittest.cc", |
| 102 "blimp_message_multiplexer_unittest.cc", | 104 "blimp_message_multiplexer_unittest.cc", |
| 103 "blimp_message_output_buffer_unittest.cc", | 105 "blimp_message_output_buffer_unittest.cc", |
| 104 "blimp_message_pump_unittest.cc", | 106 "blimp_message_pump_unittest.cc", |
| 105 "blimp_message_thread_pipe_unittest.cc", | 107 "blimp_message_thread_pipe_unittest.cc", |
| 108 "blob_channel/blob_channel_receiver_unittest.cc", |
| 106 "browser_connection_handler_unittest.cc", | 109 "browser_connection_handler_unittest.cc", |
| 107 "client_connection_manager_unittest.cc", | 110 "client_connection_manager_unittest.cc", |
| 108 "compressed_packet_unittest.cc", | 111 "compressed_packet_unittest.cc", |
| 109 "engine_authentication_handler_unittest.cc", | 112 "engine_authentication_handler_unittest.cc", |
| 110 "engine_connection_manager_unittest.cc", | 113 "engine_connection_manager_unittest.cc", |
| 111 "input_message_unittest.cc", | 114 "input_message_unittest.cc", |
| 112 "ssl_client_transport_unittest.cc", | 115 "ssl_client_transport_unittest.cc", |
| 113 "stream_packet_reader_unittest.cc", | 116 "stream_packet_reader_unittest.cc", |
| 114 "stream_packet_writer_unittest.cc", | 117 "stream_packet_writer_unittest.cc", |
| 115 "tcp_transport_unittest.cc", | 118 "tcp_transport_unittest.cc", |
| 116 "thread_pipe_manager_unittest.cc", | 119 "thread_pipe_manager_unittest.cc", |
| 117 ] | 120 ] |
| 118 | 121 |
| 119 deps = [ | 122 deps = [ |
| 120 ":net", | 123 ":net", |
| 121 ":test_support", | 124 ":test_support", |
| 122 "//base", | 125 "//base", |
| 123 "//base/test:run_all_unittests", | 126 "//base/test:run_all_unittests", |
| 124 "//base/test:test_support", | 127 "//base/test:test_support", |
| 125 "//blimp/common", | 128 "//blimp/common", |
| 129 "//blimp/common:test_support", |
| 126 "//blimp/common/proto", | 130 "//blimp/common/proto", |
| 127 "//net:test_support", | 131 "//net:test_support", |
| 128 "//testing/gmock", | 132 "//testing/gmock", |
| 129 "//testing/gtest", | 133 "//testing/gtest", |
| 130 "//third_party/WebKit/public:blink_headers", | 134 "//third_party/WebKit/public:blink_headers", |
| 131 ] | 135 ] |
| 132 } | 136 } |
| OLD | NEW |