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

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

Issue 1825263003: Blimp: add packet-level DEFLATE compression using zlib. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wez feedback 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
« no previous file with comments | « no previous file | blimp/net/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
(...skipping 10 matching lines...) Expand all
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 "browser_connection_handler.cc", 25 "browser_connection_handler.cc",
26 "browser_connection_handler.h", 26 "browser_connection_handler.h",
27 "client_connection_manager.cc", 27 "client_connection_manager.cc",
28 "client_connection_manager.h", 28 "client_connection_manager.h",
29 "common.cc", 29 "common.cc",
30 "common.h", 30 "common.h",
31 "compressed_packet_reader.cc",
32 "compressed_packet_reader.h",
33 "compressed_packet_writer.cc",
34 "compressed_packet_writer.h",
31 "connection_error_observer.h", 35 "connection_error_observer.h",
32 "connection_handler.h", 36 "connection_handler.h",
33 "engine_authentication_handler.cc", 37 "engine_authentication_handler.cc",
34 "engine_authentication_handler.h", 38 "engine_authentication_handler.h",
35 "engine_connection_manager.cc", 39 "engine_connection_manager.cc",
36 "engine_connection_manager.h", 40 "engine_connection_manager.h",
37 "exact_match_cert_verifier.cc", 41 "exact_match_cert_verifier.cc",
38 "exact_match_cert_verifier.h", 42 "exact_match_cert_verifier.h",
39 "input_message_converter.cc", 43 "input_message_converter.cc",
40 "input_message_converter.h", 44 "input_message_converter.h",
(...skipping 17 matching lines...) Expand all
58 "thread_pipe_manager.h", 62 "thread_pipe_manager.h",
59 ] 63 ]
60 64
61 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] 65 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ]
62 66
63 deps = [ 67 deps = [
64 "//base", 68 "//base",
65 "//blimp/common:blimp_common", 69 "//blimp/common:blimp_common",
66 "//blimp/common/proto", 70 "//blimp/common/proto",
67 "//net", 71 "//net",
72 "//third_party/zlib",
68 "//ui/base/ime:text_input_types", 73 "//ui/base/ime:text_input_types",
69 ] 74 ]
70 } 75 }
71 76
72 source_set("test_support") { 77 source_set("test_support") {
73 testonly = true 78 testonly = true
74 79
75 sources = [ 80 sources = [
76 "test_common.cc", 81 "test_common.cc",
77 "test_common.h", 82 "test_common.h",
(...skipping 13 matching lines...) Expand all
91 sources = [ 96 sources = [
92 "blimp_connection_unittest.cc", 97 "blimp_connection_unittest.cc",
93 "blimp_message_checkpointer_unittest.cc", 98 "blimp_message_checkpointer_unittest.cc",
94 "blimp_message_demultiplexer_unittest.cc", 99 "blimp_message_demultiplexer_unittest.cc",
95 "blimp_message_multiplexer_unittest.cc", 100 "blimp_message_multiplexer_unittest.cc",
96 "blimp_message_output_buffer_unittest.cc", 101 "blimp_message_output_buffer_unittest.cc",
97 "blimp_message_pump_unittest.cc", 102 "blimp_message_pump_unittest.cc",
98 "blimp_message_thread_pipe_unittest.cc", 103 "blimp_message_thread_pipe_unittest.cc",
99 "browser_connection_handler_unittest.cc", 104 "browser_connection_handler_unittest.cc",
100 "client_connection_manager_unittest.cc", 105 "client_connection_manager_unittest.cc",
106 "compressed_packet_unittest.cc",
101 "engine_authentication_handler_unittest.cc", 107 "engine_authentication_handler_unittest.cc",
102 "engine_connection_manager_unittest.cc", 108 "engine_connection_manager_unittest.cc",
103 "input_message_unittest.cc", 109 "input_message_unittest.cc",
104 "ssl_client_transport_unittest.cc", 110 "ssl_client_transport_unittest.cc",
105 "stream_packet_reader_unittest.cc", 111 "stream_packet_reader_unittest.cc",
106 "stream_packet_writer_unittest.cc", 112 "stream_packet_writer_unittest.cc",
107 "tcp_transport_unittest.cc", 113 "tcp_transport_unittest.cc",
108 "thread_pipe_manager_unittest.cc", 114 "thread_pipe_manager_unittest.cc",
109 ] 115 ]
110 116
111 deps = [ 117 deps = [
112 ":blimp_net", 118 ":blimp_net",
113 ":test_support", 119 ":test_support",
114 "//base", 120 "//base",
115 "//base/test:run_all_unittests", 121 "//base/test:run_all_unittests",
116 "//base/test:test_support", 122 "//base/test:test_support",
117 "//blimp/common:blimp_common", 123 "//blimp/common:blimp_common",
118 "//blimp/common/proto", 124 "//blimp/common/proto",
119 "//net:test_support", 125 "//net:test_support",
120 "//testing/gmock", 126 "//testing/gmock",
121 "//testing/gtest", 127 "//testing/gtest",
122 ] 128 ]
123 } 129 }
OLDNEW
« no previous file with comments | « no previous file | blimp/net/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698