| OLD | NEW |
| 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", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "tcp_client_transport.h", | 70 "tcp_client_transport.h", |
| 71 "tcp_engine_transport.cc", | 71 "tcp_engine_transport.cc", |
| 72 "tcp_engine_transport.h", | 72 "tcp_engine_transport.h", |
| 73 "thread_pipe_manager.cc", | 73 "thread_pipe_manager.cc", |
| 74 "thread_pipe_manager.h", | 74 "thread_pipe_manager.h", |
| 75 ] | 75 ] |
| 76 | 76 |
| 77 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] | 77 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] |
| 78 | 78 |
| 79 deps = [ | 79 deps = [ |
| 80 ":helium", |
| 80 "//base", | 81 "//base", |
| 81 "//blimp/common", | 82 "//blimp/common", |
| 82 "//net", | 83 "//net", |
| 83 "//third_party/WebKit/public:blink_headers", | 84 "//third_party/WebKit/public:blink_headers", |
| 84 "//third_party/zlib", | 85 "//third_party/zlib", |
| 85 "//ui/base/ime:text_input_types", | 86 "//ui/base/ime:text_input_types", |
| 86 ] | 87 ] |
| 87 | 88 |
| 88 public_deps = [ | 89 public_deps = [ |
| 89 "//blimp/common/proto", | 90 "//blimp/common/proto", |
| 90 ] | 91 ] |
| 91 } | 92 } |
| 92 | 93 |
| 94 source_set("helium") { |
| 95 sources = [ |
| 96 "helium/vector_clock.cc", |
| 97 "helium/vector_clock.h", |
| 98 ] |
| 99 deps = [ |
| 100 "//base", |
| 101 "//blimp/common", |
| 102 ] |
| 103 |
| 104 public_deps = [ |
| 105 "//blimp/common/proto", |
| 106 ] |
| 107 } |
| 108 |
| 93 source_set("test_support") { | 109 source_set("test_support") { |
| 94 testonly = true | 110 testonly = true |
| 95 | 111 |
| 96 sources = [ | 112 sources = [ |
| 97 "blob_channel/mock_blob_channel_receiver.cc", | 113 "blob_channel/mock_blob_channel_receiver.cc", |
| 98 "blob_channel/mock_blob_channel_receiver.h", | 114 "blob_channel/mock_blob_channel_receiver.h", |
| 99 "blob_channel/mock_blob_channel_sender.cc", | 115 "blob_channel/mock_blob_channel_sender.cc", |
| 100 "blob_channel/mock_blob_channel_sender.h", | 116 "blob_channel/mock_blob_channel_sender.h", |
| 101 "test_common.cc", | 117 "test_common.cc", |
| 102 "test_common.h", | 118 "test_common.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 127 "blimp_stats_unittest.cc", | 143 "blimp_stats_unittest.cc", |
| 128 "blob_channel/blob_channel_integration_test.cc", | 144 "blob_channel/blob_channel_integration_test.cc", |
| 129 "blob_channel/blob_channel_receiver_unittest.cc", | 145 "blob_channel/blob_channel_receiver_unittest.cc", |
| 130 "blob_channel/blob_channel_sender_unittest.cc", | 146 "blob_channel/blob_channel_sender_unittest.cc", |
| 131 "blob_channel/helium_blob_channel_unittest.cc", | 147 "blob_channel/helium_blob_channel_unittest.cc", |
| 132 "browser_connection_handler_unittest.cc", | 148 "browser_connection_handler_unittest.cc", |
| 133 "client_connection_manager_unittest.cc", | 149 "client_connection_manager_unittest.cc", |
| 134 "compressed_packet_unittest.cc", | 150 "compressed_packet_unittest.cc", |
| 135 "engine_authentication_handler_unittest.cc", | 151 "engine_authentication_handler_unittest.cc", |
| 136 "engine_connection_manager_unittest.cc", | 152 "engine_connection_manager_unittest.cc", |
| 153 "helium/vector_clock_unittest.cc", |
| 137 "input_message_unittest.cc", | 154 "input_message_unittest.cc", |
| 138 "ssl_client_transport_unittest.cc", | 155 "ssl_client_transport_unittest.cc", |
| 139 "stream_packet_reader_unittest.cc", | 156 "stream_packet_reader_unittest.cc", |
| 140 "stream_packet_writer_unittest.cc", | 157 "stream_packet_writer_unittest.cc", |
| 141 "tcp_transport_unittest.cc", | 158 "tcp_transport_unittest.cc", |
| 142 "thread_pipe_manager_unittest.cc", | 159 "thread_pipe_manager_unittest.cc", |
| 143 ] | 160 ] |
| 144 | 161 |
| 145 deps = [ | 162 deps = [ |
| 163 ":helium", |
| 146 ":net", | 164 ":net", |
| 147 ":test_support", | 165 ":test_support", |
| 148 "//base", | 166 "//base", |
| 149 "//base/test:test_support", | 167 "//base/test:test_support", |
| 150 "//blimp/common", | 168 "//blimp/common", |
| 151 "//blimp/common:test_support", | 169 "//blimp/common:test_support", |
| 152 "//blimp/common/proto", | 170 "//blimp/common/proto", |
| 153 "//net:test_support", | 171 "//net:test_support", |
| 154 "//testing/gmock", | 172 "//testing/gmock", |
| 155 "//testing/gtest", | 173 "//testing/gtest", |
| 156 "//third_party/WebKit/public:blink_headers", | 174 "//third_party/WebKit/public:blink_headers", |
| 157 ] | 175 ] |
| 158 } | 176 } |
| OLD | NEW |