Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Side by Side Diff: blimp/net/BUILD.gn

Issue 1970463004: Blimp: Add BlobChannel Helium messages and delegate impls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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",
(...skipping 11 matching lines...) Expand all
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", 30 "blob_channel/blob_channel_sender.cc",
31 "blob_channel/blob_channel_sender.h", 31 "blob_channel/blob_channel_sender.h",
32 "blob_channel/helium_blob_receiver_delegate.cc",
33 "blob_channel/helium_blob_receiver_delegate.h",
34 "blob_channel/helium_blob_sender_delegate.cc",
35 "blob_channel/helium_blob_sender_delegate.h",
32 "browser_connection_handler.cc", 36 "browser_connection_handler.cc",
33 "browser_connection_handler.h", 37 "browser_connection_handler.h",
34 "client_connection_manager.cc", 38 "client_connection_manager.cc",
35 "client_connection_manager.h", 39 "client_connection_manager.h",
36 "common.cc", 40 "common.cc",
37 "common.h", 41 "common.h",
38 "compressed_packet_reader.cc", 42 "compressed_packet_reader.cc",
39 "compressed_packet_reader.h", 43 "compressed_packet_reader.h",
40 "compressed_packet_writer.cc", 44 "compressed_packet_writer.cc",
41 "compressed_packet_writer.h", 45 "compressed_packet_writer.h",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 "//third_party/WebKit/public:blink_headers", 83 "//third_party/WebKit/public:blink_headers",
80 "//third_party/zlib", 84 "//third_party/zlib",
81 "//ui/base/ime:text_input_types", 85 "//ui/base/ime:text_input_types",
82 ] 86 ]
83 } 87 }
84 88
85 source_set("test_support") { 89 source_set("test_support") {
86 testonly = true 90 testonly = true
87 91
88 sources = [ 92 sources = [
93 "blob_channel/mock_blob_channel_receiver.cc",
94 "blob_channel/mock_blob_channel_receiver.h",
89 "test_common.cc", 95 "test_common.cc",
90 "test_common.h", 96 "test_common.h",
91 ] 97 ]
92 98
93 deps = [ 99 deps = [
94 ":net", 100 ":net",
95 "//blimp/common/proto", 101 "//blimp/common/proto",
96 "//net:test_support", 102 "//net:test_support",
97 "//testing/gmock", 103 "//testing/gmock",
98 ] 104 ]
99 } 105 }
100 106
101 source_set("unit_tests") { 107 source_set("unit_tests") {
102 testonly = true 108 testonly = true
103 109
104 sources = [ 110 sources = [
105 "blimp_connection_statistics_unittest.cc", 111 "blimp_connection_statistics_unittest.cc",
106 "blimp_connection_unittest.cc", 112 "blimp_connection_unittest.cc",
107 "blimp_message_checkpointer_unittest.cc", 113 "blimp_message_checkpointer_unittest.cc",
108 "blimp_message_demultiplexer_unittest.cc", 114 "blimp_message_demultiplexer_unittest.cc",
109 "blimp_message_multiplexer_unittest.cc", 115 "blimp_message_multiplexer_unittest.cc",
110 "blimp_message_output_buffer_unittest.cc", 116 "blimp_message_output_buffer_unittest.cc",
111 "blimp_message_pump_unittest.cc", 117 "blimp_message_pump_unittest.cc",
112 "blimp_message_thread_pipe_unittest.cc", 118 "blimp_message_thread_pipe_unittest.cc",
113 "blob_channel/blob_channel_integration_test.cc", 119 "blob_channel/blob_channel_integration_test.cc",
114 "blob_channel/blob_channel_receiver_unittest.cc", 120 "blob_channel/blob_channel_receiver_unittest.cc",
115 "blob_channel/blob_channel_sender_unittest.cc", 121 "blob_channel/blob_channel_sender_unittest.cc",
122 "blob_channel/helium_blob_channel_unittest.cc",
116 "browser_connection_handler_unittest.cc", 123 "browser_connection_handler_unittest.cc",
117 "client_connection_manager_unittest.cc", 124 "client_connection_manager_unittest.cc",
118 "compressed_packet_unittest.cc", 125 "compressed_packet_unittest.cc",
119 "engine_authentication_handler_unittest.cc", 126 "engine_authentication_handler_unittest.cc",
120 "engine_connection_manager_unittest.cc", 127 "engine_connection_manager_unittest.cc",
121 "input_message_unittest.cc", 128 "input_message_unittest.cc",
122 "ssl_client_transport_unittest.cc", 129 "ssl_client_transport_unittest.cc",
123 "stream_packet_reader_unittest.cc", 130 "stream_packet_reader_unittest.cc",
124 "stream_packet_writer_unittest.cc", 131 "stream_packet_writer_unittest.cc",
125 "tcp_transport_unittest.cc", 132 "tcp_transport_unittest.cc",
126 "thread_pipe_manager_unittest.cc", 133 "thread_pipe_manager_unittest.cc",
127 ] 134 ]
128 135
129 deps = [ 136 deps = [
130 ":net", 137 ":net",
131 ":test_support", 138 ":test_support",
132 "//base", 139 "//base",
133 "//base/test:run_all_unittests", 140 "//base/test:run_all_unittests",
134 "//base/test:test_support", 141 "//base/test:test_support",
135 "//blimp/common", 142 "//blimp/common",
136 "//blimp/common:test_support", 143 "//blimp/common:test_support",
137 "//blimp/common/proto", 144 "//blimp/common/proto",
138 "//net:test_support", 145 "//net:test_support",
139 "//testing/gmock", 146 "//testing/gmock",
140 "//testing/gtest", 147 "//testing/gtest",
141 "//third_party/WebKit/public:blink_headers", 148 "//third_party/WebKit/public:blink_headers",
142 ] 149 ]
143 } 150 }
OLDNEW
« no previous file with comments | « blimp/common/proto/blob_channel.proto ('k') | blimp/net/blob_channel/blob_channel_integration_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698