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

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

Issue 1891083002: Blimp: Add BlobChannelReceiver and bindings interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blobchannel-sender
Patch Set: moar bindings commentz! Created 4 years, 8 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("blimp_net") { 5 component("blimp_net") {
6 sources = [ 6 sources = [
7 "blimp_connection.cc", 7 "blimp_connection.cc",
8 "blimp_connection.h", 8 "blimp_connection.h",
9 "blimp_message_checkpoint_observer.h", 9 "blimp_message_checkpoint_observer.h",
10 "blimp_message_checkpointer.cc", 10 "blimp_message_checkpointer.cc",
11 "blimp_message_checkpointer.h", 11 "blimp_message_checkpointer.h",
12 "blimp_message_demultiplexer.cc", 12 "blimp_message_demultiplexer.cc",
13 "blimp_message_demultiplexer.h", 13 "blimp_message_demultiplexer.h",
14 "blimp_message_multiplexer.cc", 14 "blimp_message_multiplexer.cc",
15 "blimp_message_multiplexer.h", 15 "blimp_message_multiplexer.h",
16 "blimp_message_output_buffer.cc", 16 "blimp_message_output_buffer.cc",
17 "blimp_message_output_buffer.h", 17 "blimp_message_output_buffer.h",
18 "blimp_message_processor.h", 18 "blimp_message_processor.h",
19 "blimp_message_pump.cc", 19 "blimp_message_pump.cc",
20 "blimp_message_pump.h", 20 "blimp_message_pump.h",
21 "blimp_message_thread_pipe.cc", 21 "blimp_message_thread_pipe.cc",
22 "blimp_message_thread_pipe.h", 22 "blimp_message_thread_pipe.h",
23 "blimp_net_export.h", 23 "blimp_net_export.h",
24 "blimp_transport.h", 24 "blimp_transport.h",
25 "blob_channel/blob_channel_bindings.h", 25 "blob_channel/blob_channel_bindings.h",
26 "blob_channel/blob_channel_receiver.cc",
27 "blob_channel/blob_channel_receiver.h",
26 "blob_channel/blob_channel_sender.cc", 28 "blob_channel/blob_channel_sender.cc",
27 "blob_channel/blob_channel_sender.h", 29 "blob_channel/blob_channel_sender.h",
28 "browser_connection_handler.cc", 30 "browser_connection_handler.cc",
29 "browser_connection_handler.h", 31 "browser_connection_handler.h",
30 "client_connection_manager.cc", 32 "client_connection_manager.cc",
31 "client_connection_manager.h", 33 "client_connection_manager.h",
32 "common.cc", 34 "common.cc",
33 "common.h", 35 "common.h",
34 "compressed_packet_reader.cc", 36 "compressed_packet_reader.cc",
35 "compressed_packet_reader.h", 37 "compressed_packet_reader.h",
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 testonly = true 101 testonly = true
100 102
101 sources = [ 103 sources = [
102 "blimp_connection_unittest.cc", 104 "blimp_connection_unittest.cc",
103 "blimp_message_checkpointer_unittest.cc", 105 "blimp_message_checkpointer_unittest.cc",
104 "blimp_message_demultiplexer_unittest.cc", 106 "blimp_message_demultiplexer_unittest.cc",
105 "blimp_message_multiplexer_unittest.cc", 107 "blimp_message_multiplexer_unittest.cc",
106 "blimp_message_output_buffer_unittest.cc", 108 "blimp_message_output_buffer_unittest.cc",
107 "blimp_message_pump_unittest.cc", 109 "blimp_message_pump_unittest.cc",
108 "blimp_message_thread_pipe_unittest.cc", 110 "blimp_message_thread_pipe_unittest.cc",
111 "blob_channel/blob_channel_receiver_unittest.cc",
109 "blob_channel/blob_channel_sender_unittest.cc", 112 "blob_channel/blob_channel_sender_unittest.cc",
110 "browser_connection_handler_unittest.cc", 113 "browser_connection_handler_unittest.cc",
111 "client_connection_manager_unittest.cc", 114 "client_connection_manager_unittest.cc",
112 "compressed_packet_unittest.cc", 115 "compressed_packet_unittest.cc",
113 "engine_authentication_handler_unittest.cc", 116 "engine_authentication_handler_unittest.cc",
114 "engine_connection_manager_unittest.cc", 117 "engine_connection_manager_unittest.cc",
115 "input_message_unittest.cc", 118 "input_message_unittest.cc",
116 "ssl_client_transport_unittest.cc", 119 "ssl_client_transport_unittest.cc",
117 "stream_packet_reader_unittest.cc", 120 "stream_packet_reader_unittest.cc",
118 "stream_packet_writer_unittest.cc", 121 "stream_packet_writer_unittest.cc",
119 "tcp_transport_unittest.cc", 122 "tcp_transport_unittest.cc",
120 "thread_pipe_manager_unittest.cc", 123 "thread_pipe_manager_unittest.cc",
121 ] 124 ]
122 125
123 deps = [ 126 deps = [
124 ":blimp_net", 127 ":blimp_net",
125 ":test_support", 128 ":test_support",
126 "//base", 129 "//base",
127 "//base/test:run_all_unittests", 130 "//base/test:run_all_unittests",
128 "//base/test:test_support", 131 "//base/test:test_support",
129 "//blimp/common:blimp_common", 132 "//blimp/common:blimp_common",
130 "//blimp/common/proto", 133 "//blimp/common/proto",
131 "//net:test_support", 134 "//net:test_support",
132 "//testing/gmock", 135 "//testing/gmock",
133 "//testing/gtest", 136 "//testing/gtest",
134 ] 137 ]
135 } 138 }
OLDNEW
« no previous file with comments | « no previous file | blimp/net/blob_channel/blob_channel_bindings.h » ('j') | blimp/net/blob_channel/blob_channel_bindings.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698