| 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_engine_transport.h", |
| 10 "blimp_message_checkpoint_observer.h", | 11 "blimp_message_checkpoint_observer.h", |
| 11 "blimp_message_checkpointer.cc", | 12 "blimp_message_checkpointer.cc", |
| 12 "blimp_message_checkpointer.h", | 13 "blimp_message_checkpointer.h", |
| 13 "blimp_message_demultiplexer.cc", | 14 "blimp_message_demultiplexer.cc", |
| 14 "blimp_message_demultiplexer.h", | 15 "blimp_message_demultiplexer.h", |
| 15 "blimp_message_multiplexer.cc", | 16 "blimp_message_multiplexer.cc", |
| 16 "blimp_message_multiplexer.h", | 17 "blimp_message_multiplexer.h", |
| 17 "blimp_message_output_buffer.cc", | 18 "blimp_message_output_buffer.cc", |
| 18 "blimp_message_output_buffer.h", | 19 "blimp_message_output_buffer.h", |
| 19 "blimp_message_processor.h", | 20 "blimp_message_processor.h", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "null_blimp_message_processor.cc", | 62 "null_blimp_message_processor.cc", |
| 62 "null_blimp_message_processor.h", | 63 "null_blimp_message_processor.h", |
| 63 "ssl_client_transport.cc", | 64 "ssl_client_transport.cc", |
| 64 "ssl_client_transport.h", | 65 "ssl_client_transport.h", |
| 65 "stream_packet_reader.cc", | 66 "stream_packet_reader.cc", |
| 66 "stream_packet_reader.h", | 67 "stream_packet_reader.h", |
| 67 "stream_packet_writer.cc", | 68 "stream_packet_writer.cc", |
| 68 "stream_packet_writer.h", | 69 "stream_packet_writer.h", |
| 69 "tcp_client_transport.cc", | 70 "tcp_client_transport.cc", |
| 70 "tcp_client_transport.h", | 71 "tcp_client_transport.h", |
| 72 "tcp_connection.cc", |
| 73 "tcp_connection.h", |
| 71 "tcp_engine_transport.cc", | 74 "tcp_engine_transport.cc", |
| 72 "tcp_engine_transport.h", | 75 "tcp_engine_transport.h", |
| 73 "thread_pipe_manager.cc", | 76 "thread_pipe_manager.cc", |
| 74 "thread_pipe_manager.h", | 77 "thread_pipe_manager.h", |
| 75 ] | 78 ] |
| 76 | 79 |
| 77 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] | 80 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] |
| 78 | 81 |
| 79 deps = [ | 82 deps = [ |
| 80 ":net_export", | 83 ":net_export", |
| 81 "//base", | 84 "//base", |
| 82 "//blimp/common", | 85 "//blimp/common", |
| 83 "//blimp/helium", | 86 "//blimp/helium", |
| 87 "//content/public/browser", |
| 84 "//net", | 88 "//net", |
| 85 "//third_party/WebKit/public:blink_headers", | 89 "//third_party/WebKit/public:blink_headers", |
| 90 "//third_party/grpc:grpc++_unsecure", |
| 86 "//third_party/zlib", | 91 "//third_party/zlib", |
| 87 "//ui/base/ime:text_input_types", | 92 "//ui/base/ime:text_input_types", |
| 88 ] | 93 ] |
| 89 | 94 |
| 90 public_deps = [ | 95 public_deps = [ |
| 91 "//blimp/common/proto", | 96 "//blimp/common/proto", |
| 92 ] | 97 ] |
| 93 } | 98 } |
| 94 | 99 |
| 95 source_set("net_export") { | 100 source_set("net_export") { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 118 | 123 |
| 119 public_deps = [ | 124 public_deps = [ |
| 120 "//blimp/common/proto", | 125 "//blimp/common/proto", |
| 121 ] | 126 ] |
| 122 } | 127 } |
| 123 | 128 |
| 124 source_set("unit_tests") { | 129 source_set("unit_tests") { |
| 125 testonly = true | 130 testonly = true |
| 126 | 131 |
| 127 sources = [ | 132 sources = [ |
| 128 "blimp_connection_unittest.cc", | |
| 129 "blimp_message_checkpointer_unittest.cc", | 133 "blimp_message_checkpointer_unittest.cc", |
| 130 "blimp_message_demultiplexer_unittest.cc", | 134 "blimp_message_demultiplexer_unittest.cc", |
| 131 "blimp_message_multiplexer_unittest.cc", | 135 "blimp_message_multiplexer_unittest.cc", |
| 132 "blimp_message_output_buffer_unittest.cc", | 136 "blimp_message_output_buffer_unittest.cc", |
| 133 "blimp_message_pump_unittest.cc", | 137 "blimp_message_pump_unittest.cc", |
| 134 "blimp_message_thread_pipe_unittest.cc", | 138 "blimp_message_thread_pipe_unittest.cc", |
| 135 "blimp_stats_unittest.cc", | 139 "blimp_stats_unittest.cc", |
| 136 "blob_channel/blob_channel_integration_test.cc", | 140 "blob_channel/blob_channel_integration_test.cc", |
| 137 "blob_channel/blob_channel_receiver_unittest.cc", | 141 "blob_channel/blob_channel_receiver_unittest.cc", |
| 138 "blob_channel/blob_channel_sender_unittest.cc", | 142 "blob_channel/blob_channel_sender_unittest.cc", |
| 139 "blob_channel/helium_blob_channel_unittest.cc", | 143 "blob_channel/helium_blob_channel_unittest.cc", |
| 140 "browser_connection_handler_unittest.cc", | 144 "browser_connection_handler_unittest.cc", |
| 141 "client_connection_manager_unittest.cc", | 145 "client_connection_manager_unittest.cc", |
| 142 "compressed_packet_unittest.cc", | 146 "compressed_packet_unittest.cc", |
| 143 "delta_encoding_unittest.cc", | 147 "delta_encoding_unittest.cc", |
| 144 "engine_authentication_handler_unittest.cc", | 148 "engine_authentication_handler_unittest.cc", |
| 145 "engine_connection_manager_unittest.cc", | 149 "engine_connection_manager_unittest.cc", |
| 146 "input_message_unittest.cc", | 150 "input_message_unittest.cc", |
| 147 "ssl_client_transport_unittest.cc", | 151 "ssl_client_transport_unittest.cc", |
| 148 "stream_packet_reader_unittest.cc", | 152 "stream_packet_reader_unittest.cc", |
| 149 "stream_packet_writer_unittest.cc", | 153 "stream_packet_writer_unittest.cc", |
| 154 "tcp_connection_unittest.cc", |
| 150 "tcp_transport_unittest.cc", | 155 "tcp_transport_unittest.cc", |
| 151 "thread_pipe_manager_unittest.cc", | 156 "thread_pipe_manager_unittest.cc", |
| 152 ] | 157 ] |
| 153 | 158 |
| 154 deps = [ | 159 deps = [ |
| 155 ":net", | 160 ":net", |
| 156 ":test_support", | 161 ":test_support", |
| 157 "//base", | 162 "//base", |
| 158 "//base/test:test_support", | 163 "//base/test:test_support", |
| 159 "//blimp/common", | 164 "//blimp/common", |
| 160 "//blimp/common:test_support", | 165 "//blimp/common:test_support", |
| 161 "//blimp/common/proto", | 166 "//blimp/common/proto", |
| 162 "//net:test_support", | 167 "//net:test_support", |
| 163 "//testing/gmock", | 168 "//testing/gmock", |
| 164 "//testing/gtest", | 169 "//testing/gtest", |
| 165 "//third_party/WebKit/public:blink_headers", | 170 "//third_party/WebKit/public:blink_headers", |
| 171 "//third_party/grpc:grpc++_unsecure", |
| 166 ] | 172 ] |
| 167 } | 173 } |
| OLD | NEW |