| 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", |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 testonly = true | 100 testonly = true |
| 101 | 101 |
| 102 sources = [ | 102 sources = [ |
| 103 "blimp_connection_unittest.cc", | 103 "blimp_connection_unittest.cc", |
| 104 "blimp_message_checkpointer_unittest.cc", | 104 "blimp_message_checkpointer_unittest.cc", |
| 105 "blimp_message_demultiplexer_unittest.cc", | 105 "blimp_message_demultiplexer_unittest.cc", |
| 106 "blimp_message_multiplexer_unittest.cc", | 106 "blimp_message_multiplexer_unittest.cc", |
| 107 "blimp_message_output_buffer_unittest.cc", | 107 "blimp_message_output_buffer_unittest.cc", |
| 108 "blimp_message_pump_unittest.cc", | 108 "blimp_message_pump_unittest.cc", |
| 109 "blimp_message_thread_pipe_unittest.cc", | 109 "blimp_message_thread_pipe_unittest.cc", |
| 110 "blob_channel/blob_channel_integration_test.cc", |
| 110 "blob_channel/blob_channel_receiver_unittest.cc", | 111 "blob_channel/blob_channel_receiver_unittest.cc", |
| 111 "blob_channel/blob_channel_sender_unittest.cc", | 112 "blob_channel/blob_channel_sender_unittest.cc", |
| 112 "browser_connection_handler_unittest.cc", | 113 "browser_connection_handler_unittest.cc", |
| 113 "client_connection_manager_unittest.cc", | 114 "client_connection_manager_unittest.cc", |
| 114 "compressed_packet_unittest.cc", | 115 "compressed_packet_unittest.cc", |
| 115 "engine_authentication_handler_unittest.cc", | 116 "engine_authentication_handler_unittest.cc", |
| 116 "engine_connection_manager_unittest.cc", | 117 "engine_connection_manager_unittest.cc", |
| 117 "input_message_unittest.cc", | 118 "input_message_unittest.cc", |
| 118 "ssl_client_transport_unittest.cc", | 119 "ssl_client_transport_unittest.cc", |
| 119 "stream_packet_reader_unittest.cc", | 120 "stream_packet_reader_unittest.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 130 "//base/test:test_support", | 131 "//base/test:test_support", |
| 131 "//blimp/common", | 132 "//blimp/common", |
| 132 "//blimp/common:test_support", | 133 "//blimp/common:test_support", |
| 133 "//blimp/common/proto", | 134 "//blimp/common/proto", |
| 134 "//net:test_support", | 135 "//net:test_support", |
| 135 "//testing/gmock", | 136 "//testing/gmock", |
| 136 "//testing/gtest", | 137 "//testing/gtest", |
| 137 "//third_party/WebKit/public:blink_headers", | 138 "//third_party/WebKit/public:blink_headers", |
| 138 ] | 139 ] |
| 139 } | 140 } |
| OLD | NEW |