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_connection_statistics.cc", | 10 "blimp_connection_statistics.cc", |
11 "blimp_connection_statistics.h", | 11 "blimp_connection_statistics.h", |
12 "blimp_message_checkpoint_observer.h", | 12 "blimp_message_checkpoint_observer.h", |
13 "blimp_message_checkpointer.cc", | 13 "blimp_message_checkpointer.cc", |
14 "blimp_message_checkpointer.h", | 14 "blimp_message_checkpointer.h", |
15 "blimp_message_demultiplexer.cc", | 15 "blimp_message_demultiplexer.cc", |
16 "blimp_message_demultiplexer.h", | 16 "blimp_message_demultiplexer.h", |
17 "blimp_message_multiplexer.cc", | 17 "blimp_message_multiplexer.cc", |
18 "blimp_message_multiplexer.h", | 18 "blimp_message_multiplexer.h", |
19 "blimp_message_output_buffer.cc", | 19 "blimp_message_output_buffer.cc", |
20 "blimp_message_output_buffer.h", | 20 "blimp_message_output_buffer.h", |
21 "blimp_message_processor.h", | 21 "blimp_message_processor.h", |
22 "blimp_message_pump.cc", | 22 "blimp_message_pump.cc", |
23 "blimp_message_pump.h", | 23 "blimp_message_pump.h", |
24 "blimp_message_thread_pipe.cc", | 24 "blimp_message_thread_pipe.cc", |
25 "blimp_message_thread_pipe.h", | 25 "blimp_message_thread_pipe.h", |
26 "blimp_net_export.h", | 26 "blimp_net_export.h", |
27 "blimp_transport.h", | 27 "blimp_transport.h", |
28 "blob_channel/blob_channel_receiver.cc", | 28 "blob_channel/blob_channel_receiver.cc", |
29 "blob_channel/blob_channel_receiver.h", | 29 "blob_channel/blob_channel_receiver.h", |
30 "blob_channel/blob_channel_sender.cc", | |
31 "blob_channel/blob_channel_sender.h", | 30 "blob_channel/blob_channel_sender.h", |
| 31 "blob_channel/blob_channel_sender_impl.cc", |
| 32 "blob_channel/blob_channel_sender_impl.h", |
32 "blob_channel/helium_blob_receiver_delegate.cc", | 33 "blob_channel/helium_blob_receiver_delegate.cc", |
33 "blob_channel/helium_blob_receiver_delegate.h", | 34 "blob_channel/helium_blob_receiver_delegate.h", |
34 "blob_channel/helium_blob_sender_delegate.cc", | 35 "blob_channel/helium_blob_sender_delegate.cc", |
35 "blob_channel/helium_blob_sender_delegate.h", | 36 "blob_channel/helium_blob_sender_delegate.h", |
36 "browser_connection_handler.cc", | 37 "browser_connection_handler.cc", |
37 "browser_connection_handler.h", | 38 "browser_connection_handler.h", |
38 "client_connection_manager.cc", | 39 "client_connection_manager.cc", |
39 "client_connection_manager.h", | 40 "client_connection_manager.h", |
40 "common.cc", | 41 "common.cc", |
41 "common.h", | 42 "common.h", |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 "//base/test:test_support", | 142 "//base/test:test_support", |
142 "//blimp/common", | 143 "//blimp/common", |
143 "//blimp/common:test_support", | 144 "//blimp/common:test_support", |
144 "//blimp/common/proto", | 145 "//blimp/common/proto", |
145 "//net:test_support", | 146 "//net:test_support", |
146 "//testing/gmock", | 147 "//testing/gmock", |
147 "//testing/gtest", | 148 "//testing/gtest", |
148 "//third_party/WebKit/public:blink_headers", | 149 "//third_party/WebKit/public:blink_headers", |
149 ] | 150 ] |
150 } | 151 } |
OLD | NEW |