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", |
| 11 "blimp_connection_statistics.h", |
10 "blimp_message_checkpoint_observer.h", | 12 "blimp_message_checkpoint_observer.h", |
11 "blimp_message_checkpointer.cc", | 13 "blimp_message_checkpointer.cc", |
12 "blimp_message_checkpointer.h", | 14 "blimp_message_checkpointer.h", |
13 "blimp_message_demultiplexer.cc", | 15 "blimp_message_demultiplexer.cc", |
14 "blimp_message_demultiplexer.h", | 16 "blimp_message_demultiplexer.h", |
15 "blimp_message_multiplexer.cc", | 17 "blimp_message_multiplexer.cc", |
16 "blimp_message_multiplexer.h", | 18 "blimp_message_multiplexer.h", |
17 "blimp_message_output_buffer.cc", | 19 "blimp_message_output_buffer.cc", |
18 "blimp_message_output_buffer.h", | 20 "blimp_message_output_buffer.h", |
19 "blimp_message_processor.h", | 21 "blimp_message_processor.h", |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 "//blimp/common/proto", | 101 "//blimp/common/proto", |
100 "//net:test_support", | 102 "//net:test_support", |
101 "//testing/gmock", | 103 "//testing/gmock", |
102 ] | 104 ] |
103 } | 105 } |
104 | 106 |
105 source_set("unit_tests") { | 107 source_set("unit_tests") { |
106 testonly = true | 108 testonly = true |
107 | 109 |
108 sources = [ | 110 sources = [ |
| 111 "blimp_connection_statistics_unittest.cc", |
109 "blimp_connection_unittest.cc", | 112 "blimp_connection_unittest.cc", |
110 "blimp_message_checkpointer_unittest.cc", | 113 "blimp_message_checkpointer_unittest.cc", |
111 "blimp_message_demultiplexer_unittest.cc", | 114 "blimp_message_demultiplexer_unittest.cc", |
112 "blimp_message_multiplexer_unittest.cc", | 115 "blimp_message_multiplexer_unittest.cc", |
113 "blimp_message_output_buffer_unittest.cc", | 116 "blimp_message_output_buffer_unittest.cc", |
114 "blimp_message_pump_unittest.cc", | 117 "blimp_message_pump_unittest.cc", |
115 "blimp_message_thread_pipe_unittest.cc", | 118 "blimp_message_thread_pipe_unittest.cc", |
116 "blob_channel/blob_channel_integration_test.cc", | 119 "blob_channel/blob_channel_integration_test.cc", |
117 "blob_channel/blob_channel_receiver_unittest.cc", | 120 "blob_channel/blob_channel_receiver_unittest.cc", |
118 "blob_channel/blob_channel_sender_unittest.cc", | 121 "blob_channel/blob_channel_sender_unittest.cc", |
(...skipping 19 matching lines...) Expand all Loading... |
138 "//base/test:test_support", | 141 "//base/test:test_support", |
139 "//blimp/common", | 142 "//blimp/common", |
140 "//blimp/common:test_support", | 143 "//blimp/common:test_support", |
141 "//blimp/common/proto", | 144 "//blimp/common/proto", |
142 "//net:test_support", | 145 "//net:test_support", |
143 "//testing/gmock", | 146 "//testing/gmock", |
144 "//testing/gtest", | 147 "//testing/gtest", |
145 "//third_party/WebKit/public:blink_headers", | 148 "//third_party/WebKit/public:blink_headers", |
146 ] | 149 ] |
147 } | 150 } |
OLD | NEW |