Index: blimp/net/BUILD.gn |
diff --git a/blimp/net/BUILD.gn b/blimp/net/BUILD.gn |
index d7d98fba9112d6b2529645bdc6bf847cbdfe0f37..0310faf4d748fbfee65709f017c75148c13d662a 100644 |
--- a/blimp/net/BUILD.gn |
+++ b/blimp/net/BUILD.gn |
@@ -68,6 +68,8 @@ component("net") { |
"stream_packet_writer.h", |
"tcp_client_transport.cc", |
"tcp_client_transport.h", |
+ "tcp_connection.cc", |
+ "tcp_connection.h", |
"tcp_engine_transport.cc", |
"tcp_engine_transport.h", |
"thread_pipe_manager.cc", |
@@ -81,8 +83,10 @@ component("net") { |
"//base", |
"//blimp/common", |
"//blimp/helium", |
+ "//content/public/browser", |
"//net", |
"//third_party/WebKit/public:blink_headers", |
+ "//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.
|
"//third_party/zlib", |
"//ui/base/ime:text_input_types", |
] |
@@ -125,7 +129,6 @@ source_set("unit_tests") { |
testonly = true |
sources = [ |
- "blimp_connection_unittest.cc", |
"blimp_message_checkpointer_unittest.cc", |
"blimp_message_demultiplexer_unittest.cc", |
"blimp_message_multiplexer_unittest.cc", |
@@ -147,6 +150,7 @@ source_set("unit_tests") { |
"ssl_client_transport_unittest.cc", |
"stream_packet_reader_unittest.cc", |
"stream_packet_writer_unittest.cc", |
+ "tcp_connection_unittest.cc", |
"tcp_transport_unittest.cc", |
"thread_pipe_manager_unittest.cc", |
] |
@@ -163,5 +167,6 @@ source_set("unit_tests") { |
"//testing/gmock", |
"//testing/gtest", |
"//third_party/WebKit/public:blink_headers", |
+ "//third_party/grpc:grpc++_unsecure", |
Garrett Casto
2016/10/25 18:33:50
Same as above.
|
] |
} |