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

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: haibinlu feedback 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_message_checkpoint_observer.h", 10 "blimp_message_checkpoint_observer.h",
11 "blimp_message_checkpointer.cc", 11 "blimp_message_checkpointer.cc",
12 "blimp_message_checkpointer.h", 12 "blimp_message_checkpointer.h",
13 "blimp_message_demultiplexer.cc", 13 "blimp_message_demultiplexer.cc",
14 "blimp_message_demultiplexer.h", 14 "blimp_message_demultiplexer.h",
15 "blimp_message_multiplexer.cc", 15 "blimp_message_multiplexer.cc",
16 "blimp_message_multiplexer.h", 16 "blimp_message_multiplexer.h",
17 "blimp_message_output_buffer.cc", 17 "blimp_message_output_buffer.cc",
18 "blimp_message_output_buffer.h", 18 "blimp_message_output_buffer.h",
19 "blimp_message_processor.h", 19 "blimp_message_processor.h",
20 "blimp_message_pump.cc", 20 "blimp_message_pump.cc",
21 "blimp_message_pump.h", 21 "blimp_message_pump.h",
22 "blimp_message_thread_pipe.cc", 22 "blimp_message_thread_pipe.cc",
23 "blimp_message_thread_pipe.h", 23 "blimp_message_thread_pipe.h",
24 "blimp_net_export.h", 24 "blimp_net_export.h",
25 "blimp_transport.h", 25 "blimp_transport.h",
26 "blob_channel/blob_channel_receiver.cc", 26 "blob_channel/blob_channel_receiver.cc",
27 "blob_channel/blob_channel_receiver.h", 27 "blob_channel/blob_channel_receiver.h",
28 "blob_channel/blob_channel_sender.cc", 28 "blob_channel/blob_channel_sender.cc",
29 "blob_channel/blob_channel_sender.h", 29 "blob_channel/blob_channel_sender.h",
30 "blob_channel/helium_blob_receiver_delegate.cc",
31 "blob_channel/helium_blob_receiver_delegate.h",
32 "blob_channel/helium_blob_sender_delegate.cc",
33 "blob_channel/helium_blob_sender_delegate.h",
30 "browser_connection_handler.cc", 34 "browser_connection_handler.cc",
31 "browser_connection_handler.h", 35 "browser_connection_handler.h",
32 "client_connection_manager.cc", 36 "client_connection_manager.cc",
33 "client_connection_manager.h", 37 "client_connection_manager.h",
34 "common.cc", 38 "common.cc",
35 "common.h", 39 "common.h",
36 "compressed_packet_reader.cc", 40 "compressed_packet_reader.cc",
37 "compressed_packet_reader.h", 41 "compressed_packet_reader.h",
38 "compressed_packet_writer.cc", 42 "compressed_packet_writer.cc",
39 "compressed_packet_writer.h", 43 "compressed_packet_writer.h",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "//third_party/WebKit/public:blink_headers", 81 "//third_party/WebKit/public:blink_headers",
78 "//third_party/zlib", 82 "//third_party/zlib",
79 "//ui/base/ime:text_input_types", 83 "//ui/base/ime:text_input_types",
80 ] 84 ]
81 } 85 }
82 86
83 source_set("test_support") { 87 source_set("test_support") {
84 testonly = true 88 testonly = true
85 89
86 sources = [ 90 sources = [
91 "blob_channel/mock_blob_channel_receiver.cc",
92 "blob_channel/mock_blob_channel_receiver.h",
87 "test_common.cc", 93 "test_common.cc",
88 "test_common.h", 94 "test_common.h",
89 ] 95 ]
90 96
91 deps = [ 97 deps = [
92 ":net", 98 ":net",
93 "//blimp/common/proto", 99 "//blimp/common/proto",
94 "//net:test_support", 100 "//net:test_support",
95 "//testing/gmock", 101 "//testing/gmock",
96 ] 102 ]
97 } 103 }
98 104
99 source_set("unit_tests") { 105 source_set("unit_tests") {
100 testonly = true 106 testonly = true
101 107
102 sources = [ 108 sources = [
103 "blimp_connection_unittest.cc", 109 "blimp_connection_unittest.cc",
104 "blimp_message_checkpointer_unittest.cc", 110 "blimp_message_checkpointer_unittest.cc",
105 "blimp_message_demultiplexer_unittest.cc", 111 "blimp_message_demultiplexer_unittest.cc",
106 "blimp_message_multiplexer_unittest.cc", 112 "blimp_message_multiplexer_unittest.cc",
107 "blimp_message_output_buffer_unittest.cc", 113 "blimp_message_output_buffer_unittest.cc",
108 "blimp_message_pump_unittest.cc", 114 "blimp_message_pump_unittest.cc",
109 "blimp_message_thread_pipe_unittest.cc", 115 "blimp_message_thread_pipe_unittest.cc",
110 "blob_channel/blob_channel_integration_test.cc", 116 "blob_channel/blob_channel_integration_test.cc",
111 "blob_channel/blob_channel_receiver_unittest.cc", 117 "blob_channel/blob_channel_receiver_unittest.cc",
112 "blob_channel/blob_channel_sender_unittest.cc", 118 "blob_channel/blob_channel_sender_unittest.cc",
119 "blob_channel/helium_blob_channel_unittest.cc",
113 "browser_connection_handler_unittest.cc", 120 "browser_connection_handler_unittest.cc",
114 "client_connection_manager_unittest.cc", 121 "client_connection_manager_unittest.cc",
115 "compressed_packet_unittest.cc", 122 "compressed_packet_unittest.cc",
116 "engine_authentication_handler_unittest.cc", 123 "engine_authentication_handler_unittest.cc",
117 "engine_connection_manager_unittest.cc", 124 "engine_connection_manager_unittest.cc",
118 "input_message_unittest.cc", 125 "input_message_unittest.cc",
119 "ssl_client_transport_unittest.cc", 126 "ssl_client_transport_unittest.cc",
120 "stream_packet_reader_unittest.cc", 127 "stream_packet_reader_unittest.cc",
121 "stream_packet_writer_unittest.cc", 128 "stream_packet_writer_unittest.cc",
122 "tcp_transport_unittest.cc", 129 "tcp_transport_unittest.cc",
123 "thread_pipe_manager_unittest.cc", 130 "thread_pipe_manager_unittest.cc",
124 ] 131 ]
125 132
126 deps = [ 133 deps = [
127 ":net", 134 ":net",
128 ":test_support", 135 ":test_support",
129 "//base", 136 "//base",
130 "//base/test:run_all_unittests", 137 "//base/test:run_all_unittests",
131 "//base/test:test_support", 138 "//base/test:test_support",
132 "//blimp/common", 139 "//blimp/common",
133 "//blimp/common:test_support", 140 "//blimp/common:test_support",
134 "//blimp/common/proto", 141 "//blimp/common/proto",
135 "//net:test_support", 142 "//net:test_support",
136 "//testing/gmock", 143 "//testing/gmock",
137 "//testing/gtest", 144 "//testing/gtest",
138 "//third_party/WebKit/public:blink_headers", 145 "//third_party/WebKit/public:blink_headers",
139 ] 146 ]
140 } 147 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698