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

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

Issue 1696563002: Blimp: add support for SSL connections. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reland (safe_json issue fixed). Created 4 years, 9 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 | « blimp/engine/BUILD.gn ('k') | 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 16 matching lines...) Expand all
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 "connection_error_observer.h", 31 "connection_error_observer.h",
32 "connection_handler.h", 32 "connection_handler.h",
33 "engine_authentication_handler.cc", 33 "engine_authentication_handler.cc",
34 "engine_authentication_handler.h", 34 "engine_authentication_handler.h",
35 "engine_connection_manager.cc", 35 "engine_connection_manager.cc",
36 "engine_connection_manager.h", 36 "engine_connection_manager.h",
37 "exact_match_cert_verifier.cc",
38 "exact_match_cert_verifier.h",
37 "input_message_converter.cc", 39 "input_message_converter.cc",
38 "input_message_converter.h", 40 "input_message_converter.h",
39 "input_message_generator.cc", 41 "input_message_generator.cc",
40 "input_message_generator.h", 42 "input_message_generator.h",
41 "null_blimp_message_processor.cc", 43 "null_blimp_message_processor.cc",
42 "null_blimp_message_processor.h", 44 "null_blimp_message_processor.h",
45 "ssl_client_transport.cc",
46 "ssl_client_transport.h",
43 "stream_packet_reader.cc", 47 "stream_packet_reader.cc",
44 "stream_packet_reader.h", 48 "stream_packet_reader.h",
45 "stream_packet_writer.cc", 49 "stream_packet_writer.cc",
46 "stream_packet_writer.h", 50 "stream_packet_writer.h",
47 "stream_socket_connection.cc", 51 "stream_socket_connection.cc",
48 "stream_socket_connection.h", 52 "stream_socket_connection.h",
49 "tcp_client_transport.cc", 53 "tcp_client_transport.cc",
50 "tcp_client_transport.h", 54 "tcp_client_transport.h",
51 "tcp_engine_transport.cc", 55 "tcp_engine_transport.cc",
52 "tcp_engine_transport.h", 56 "tcp_engine_transport.h",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "blimp_message_demultiplexer_unittest.cc", 91 "blimp_message_demultiplexer_unittest.cc",
88 "blimp_message_multiplexer_unittest.cc", 92 "blimp_message_multiplexer_unittest.cc",
89 "blimp_message_output_buffer_unittest.cc", 93 "blimp_message_output_buffer_unittest.cc",
90 "blimp_message_pump_unittest.cc", 94 "blimp_message_pump_unittest.cc",
91 "blimp_message_thread_pipe_unittest.cc", 95 "blimp_message_thread_pipe_unittest.cc",
92 "browser_connection_handler_unittest.cc", 96 "browser_connection_handler_unittest.cc",
93 "client_connection_manager_unittest.cc", 97 "client_connection_manager_unittest.cc",
94 "engine_authentication_handler_unittest.cc", 98 "engine_authentication_handler_unittest.cc",
95 "engine_connection_manager_unittest.cc", 99 "engine_connection_manager_unittest.cc",
96 "input_message_unittest.cc", 100 "input_message_unittest.cc",
101 "ssl_client_transport_unittest.cc",
97 "stream_packet_reader_unittest.cc", 102 "stream_packet_reader_unittest.cc",
98 "stream_packet_writer_unittest.cc", 103 "stream_packet_writer_unittest.cc",
99 "tcp_transport_unittest.cc", 104 "tcp_transport_unittest.cc",
100 ] 105 ]
101 106
102 deps = [ 107 deps = [
103 ":blimp_net", 108 ":blimp_net",
104 ":test_support", 109 ":test_support",
105 "//base", 110 "//base",
106 "//base/test:run_all_unittests", 111 "//base/test:run_all_unittests",
107 "//base/test:test_support", 112 "//base/test:test_support",
108 "//blimp/common:blimp_common", 113 "//blimp/common:blimp_common",
109 "//blimp/common/proto", 114 "//blimp/common/proto",
110 "//net:test_support", 115 "//net:test_support",
111 "//testing/gmock", 116 "//testing/gmock",
112 "//testing/gtest", 117 "//testing/gtest",
113 ] 118 ]
114 } 119 }
OLDNEW
« no previous file with comments | « blimp/engine/BUILD.gn ('k') | blimp/net/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698