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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "//ui/base/ime:text_input_types", | 87 "//ui/base/ime:text_input_types", |
88 ] | 88 ] |
89 | 89 |
90 public_deps = [ | 90 public_deps = [ |
91 "//blimp/common/proto", | 91 "//blimp/common/proto", |
92 ] | 92 ] |
93 } | 93 } |
94 | 94 |
95 source_set("helium") { | 95 source_set("helium") { |
96 sources = [ | 96 sources = [ |
| 97 "helium/helium_errors.h", |
| 98 "helium/helium_result.cc", |
| 99 "helium/helium_result.h", |
97 "helium/vector_clock.cc", | 100 "helium/vector_clock.cc", |
98 "helium/vector_clock.h", | 101 "helium/vector_clock.h", |
99 ] | 102 ] |
100 deps = [ | 103 deps = [ |
101 ":net_export", | 104 ":net_export", |
102 "//base", | 105 "//base", |
103 "//blimp/common", | 106 "//blimp/common", |
104 ] | 107 ] |
105 | 108 |
106 public_deps = [ | 109 public_deps = [ |
107 "//blimp/common/proto", | 110 "//blimp/common/proto", |
108 ] | 111 ] |
109 } | 112 } |
110 | 113 |
111 source_set("net_export") { | 114 source_set("net_export") { |
112 sources = [ | 115 sources = [ |
113 "blimp_net_export.h", | 116 "blimp_net_export.h", |
114 ] | 117 ] |
115 } | 118 } |
116 | 119 |
117 source_set("test_support") { | 120 source_set("test_support") { |
118 testonly = true | 121 testonly = true |
119 | 122 |
120 sources = [ | 123 sources = [ |
121 "blob_channel/mock_blob_channel_receiver.cc", | 124 "blob_channel/mock_blob_channel_receiver.cc", |
122 "blob_channel/mock_blob_channel_receiver.h", | 125 "blob_channel/mock_blob_channel_receiver.h", |
123 "blob_channel/mock_blob_channel_sender.cc", | 126 "blob_channel/mock_blob_channel_sender.cc", |
(...skipping 28 matching lines...) Expand all Loading... |
152 "blob_channel/blob_channel_integration_test.cc", | 155 "blob_channel/blob_channel_integration_test.cc", |
153 "blob_channel/blob_channel_receiver_unittest.cc", | 156 "blob_channel/blob_channel_receiver_unittest.cc", |
154 "blob_channel/blob_channel_sender_unittest.cc", | 157 "blob_channel/blob_channel_sender_unittest.cc", |
155 "blob_channel/helium_blob_channel_unittest.cc", | 158 "blob_channel/helium_blob_channel_unittest.cc", |
156 "browser_connection_handler_unittest.cc", | 159 "browser_connection_handler_unittest.cc", |
157 "client_connection_manager_unittest.cc", | 160 "client_connection_manager_unittest.cc", |
158 "compressed_packet_unittest.cc", | 161 "compressed_packet_unittest.cc", |
159 "delta_encoding_unittest.cc", | 162 "delta_encoding_unittest.cc", |
160 "engine_authentication_handler_unittest.cc", | 163 "engine_authentication_handler_unittest.cc", |
161 "engine_connection_manager_unittest.cc", | 164 "engine_connection_manager_unittest.cc", |
| 165 "helium/helium_result_unittest.cc", |
162 "helium/vector_clock_unittest.cc", | 166 "helium/vector_clock_unittest.cc", |
163 "input_message_unittest.cc", | 167 "input_message_unittest.cc", |
164 "ssl_client_transport_unittest.cc", | 168 "ssl_client_transport_unittest.cc", |
165 "stream_packet_reader_unittest.cc", | 169 "stream_packet_reader_unittest.cc", |
166 "stream_packet_writer_unittest.cc", | 170 "stream_packet_writer_unittest.cc", |
167 "tcp_transport_unittest.cc", | 171 "tcp_transport_unittest.cc", |
168 "thread_pipe_manager_unittest.cc", | 172 "thread_pipe_manager_unittest.cc", |
169 ] | 173 ] |
170 | 174 |
171 deps = [ | 175 deps = [ |
172 ":helium", | 176 ":helium", |
173 ":net", | 177 ":net", |
174 ":test_support", | 178 ":test_support", |
175 "//base", | 179 "//base", |
176 "//base/test:test_support", | 180 "//base/test:test_support", |
177 "//blimp/common", | 181 "//blimp/common", |
178 "//blimp/common:test_support", | 182 "//blimp/common:test_support", |
179 "//blimp/common/proto", | 183 "//blimp/common/proto", |
180 "//net:test_support", | 184 "//net:test_support", |
181 "//testing/gmock", | 185 "//testing/gmock", |
182 "//testing/gtest", | 186 "//testing/gtest", |
183 "//third_party/WebKit/public:blink_headers", | 187 "//third_party/WebKit/public:blink_headers", |
184 ] | 188 ] |
185 } | 189 } |
OLD | NEW |