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