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

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

Issue 1887013003: Blimp: Add BlobChannelSender implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blobchannel-blobcache
Patch Set: Remove erroneous namespace 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",
26 "blob_channel/blob_channel_sender.cc",
27 "blob_channel/blob_channel_sender.h",
25 "browser_connection_handler.cc", 28 "browser_connection_handler.cc",
26 "browser_connection_handler.h", 29 "browser_connection_handler.h",
27 "client_connection_manager.cc", 30 "client_connection_manager.cc",
28 "client_connection_manager.h", 31 "client_connection_manager.h",
29 "common.cc", 32 "common.cc",
30 "common.h", 33 "common.h",
31 "compressed_packet_reader.cc", 34 "compressed_packet_reader.cc",
32 "compressed_packet_reader.h", 35 "compressed_packet_reader.h",
33 "compressed_packet_writer.cc", 36 "compressed_packet_writer.cc",
34 "compressed_packet_writer.h", 37 "compressed_packet_writer.h",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "//net", 74 "//net",
72 "//third_party/zlib", 75 "//third_party/zlib",
73 "//ui/base/ime:text_input_types", 76 "//ui/base/ime:text_input_types",
74 ] 77 ]
75 } 78 }
76 79
77 source_set("test_support") { 80 source_set("test_support") {
78 testonly = true 81 testonly = true
79 82
80 sources = [ 83 sources = [
84 "blob_channel/mock_blob_channel_bindings.cc",
85 "blob_channel/mock_blob_channel_bindings.h",
81 "test_common.cc", 86 "test_common.cc",
82 "test_common.h", 87 "test_common.h",
83 ] 88 ]
84 89
85 deps = [ 90 deps = [
86 ":blimp_net", 91 ":blimp_net",
87 "//blimp/common/proto", 92 "//blimp/common/proto",
88 "//net:test_support", 93 "//net:test_support",
89 "//testing/gmock", 94 "//testing/gmock",
90 ] 95 ]
91 } 96 }
92 97
93 source_set("unit_tests") { 98 source_set("unit_tests") {
94 testonly = true 99 testonly = true
95 100
96 sources = [ 101 sources = [
97 "blimp_connection_unittest.cc", 102 "blimp_connection_unittest.cc",
98 "blimp_message_checkpointer_unittest.cc", 103 "blimp_message_checkpointer_unittest.cc",
99 "blimp_message_demultiplexer_unittest.cc", 104 "blimp_message_demultiplexer_unittest.cc",
100 "blimp_message_multiplexer_unittest.cc", 105 "blimp_message_multiplexer_unittest.cc",
101 "blimp_message_output_buffer_unittest.cc", 106 "blimp_message_output_buffer_unittest.cc",
102 "blimp_message_pump_unittest.cc", 107 "blimp_message_pump_unittest.cc",
103 "blimp_message_thread_pipe_unittest.cc", 108 "blimp_message_thread_pipe_unittest.cc",
109 "blob_channel/blob_channel_sender_unittest.cc",
104 "browser_connection_handler_unittest.cc", 110 "browser_connection_handler_unittest.cc",
105 "client_connection_manager_unittest.cc", 111 "client_connection_manager_unittest.cc",
106 "compressed_packet_unittest.cc", 112 "compressed_packet_unittest.cc",
107 "engine_authentication_handler_unittest.cc", 113 "engine_authentication_handler_unittest.cc",
108 "engine_connection_manager_unittest.cc", 114 "engine_connection_manager_unittest.cc",
109 "input_message_unittest.cc", 115 "input_message_unittest.cc",
110 "ssl_client_transport_unittest.cc", 116 "ssl_client_transport_unittest.cc",
111 "stream_packet_reader_unittest.cc", 117 "stream_packet_reader_unittest.cc",
112 "stream_packet_writer_unittest.cc", 118 "stream_packet_writer_unittest.cc",
113 "tcp_transport_unittest.cc", 119 "tcp_transport_unittest.cc",
114 "thread_pipe_manager_unittest.cc", 120 "thread_pipe_manager_unittest.cc",
115 ] 121 ]
116 122
117 deps = [ 123 deps = [
118 ":blimp_net", 124 ":blimp_net",
119 ":test_support", 125 ":test_support",
120 "//base", 126 "//base",
121 "//base/test:run_all_unittests", 127 "//base/test:run_all_unittests",
122 "//base/test:test_support", 128 "//base/test:test_support",
123 "//blimp/common:blimp_common", 129 "//blimp/common:blimp_common",
124 "//blimp/common/proto", 130 "//blimp/common/proto",
125 "//net:test_support", 131 "//net:test_support",
126 "//testing/gmock", 132 "//testing/gmock",
127 "//testing/gtest", 133 "//testing/gtest",
128 ] 134 ]
129 } 135 }
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