| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 public_deps = [ | 90 public_deps = [ |
| 91 "//blimp/common/proto", | 91 "//blimp/common/proto", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 source_set("helium") { | 95 source_set("helium") { |
| 96 sources = [ | 96 sources = [ |
| 97 "helium/helium_errors.h", | 97 "helium/helium_errors.h", |
| 98 "helium/helium_result.cc", | 98 "helium/helium_result.cc", |
| 99 "helium/helium_result.h", | 99 "helium/helium_result.h", |
| 100 "helium/helium_stream.cc", |
| 101 "helium/helium_stream.h", |
| 102 "helium/helium_transport.h", |
| 100 "helium/vector_clock.cc", | 103 "helium/vector_clock.cc", |
| 101 "helium/vector_clock.h", | 104 "helium/vector_clock.h", |
| 102 ] | 105 ] |
| 103 deps = [ | 106 deps = [ |
| 104 ":net_export", | 107 ":net_export", |
| 105 "//base", | 108 "//base", |
| 106 "//blimp/common", | 109 "//blimp/common", |
| 110 "//net", |
| 107 ] | 111 ] |
| 108 | 112 |
| 109 public_deps = [ | 113 public_deps = [ |
| 110 "//blimp/common/proto", | 114 "//blimp/common/proto", |
| 111 ] | 115 ] |
| 112 } | 116 } |
| 113 | 117 |
| 114 source_set("net_export") { | 118 source_set("net_export") { |
| 115 sources = [ | 119 sources = [ |
| 116 "blimp_net_export.h", | 120 "blimp_net_export.h", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 "blob_channel/blob_channel_integration_test.cc", | 159 "blob_channel/blob_channel_integration_test.cc", |
| 156 "blob_channel/blob_channel_receiver_unittest.cc", | 160 "blob_channel/blob_channel_receiver_unittest.cc", |
| 157 "blob_channel/blob_channel_sender_unittest.cc", | 161 "blob_channel/blob_channel_sender_unittest.cc", |
| 158 "blob_channel/helium_blob_channel_unittest.cc", | 162 "blob_channel/helium_blob_channel_unittest.cc", |
| 159 "browser_connection_handler_unittest.cc", | 163 "browser_connection_handler_unittest.cc", |
| 160 "client_connection_manager_unittest.cc", | 164 "client_connection_manager_unittest.cc", |
| 161 "compressed_packet_unittest.cc", | 165 "compressed_packet_unittest.cc", |
| 162 "delta_encoding_unittest.cc", | 166 "delta_encoding_unittest.cc", |
| 163 "engine_authentication_handler_unittest.cc", | 167 "engine_authentication_handler_unittest.cc", |
| 164 "engine_connection_manager_unittest.cc", | 168 "engine_connection_manager_unittest.cc", |
| 165 "helium/helium_result_unittest.cc", | |
| 166 "helium/vector_clock_unittest.cc", | 169 "helium/vector_clock_unittest.cc", |
| 167 "input_message_unittest.cc", | 170 "input_message_unittest.cc", |
| 168 "ssl_client_transport_unittest.cc", | 171 "ssl_client_transport_unittest.cc", |
| 169 "stream_packet_reader_unittest.cc", | 172 "stream_packet_reader_unittest.cc", |
| 170 "stream_packet_writer_unittest.cc", | 173 "stream_packet_writer_unittest.cc", |
| 171 "tcp_transport_unittest.cc", | 174 "tcp_transport_unittest.cc", |
| 172 "thread_pipe_manager_unittest.cc", | 175 "thread_pipe_manager_unittest.cc", |
| 173 ] | 176 ] |
| 174 | 177 |
| 175 deps = [ | 178 deps = [ |
| 176 ":helium", | 179 ":helium", |
| 177 ":net", | 180 ":net", |
| 178 ":test_support", | 181 ":test_support", |
| 179 "//base", | 182 "//base", |
| 180 "//base/test:test_support", | 183 "//base/test:test_support", |
| 181 "//blimp/common", | 184 "//blimp/common", |
| 182 "//blimp/common:test_support", | 185 "//blimp/common:test_support", |
| 183 "//blimp/common/proto", | 186 "//blimp/common/proto", |
| 184 "//net:test_support", | 187 "//net:test_support", |
| 185 "//testing/gmock", | 188 "//testing/gmock", |
| 186 "//testing/gtest", | 189 "//testing/gtest", |
| 187 "//third_party/WebKit/public:blink_headers", | 190 "//third_party/WebKit/public:blink_headers", |
| 188 ] | 191 ] |
| 189 } | 192 } |
| OLD | NEW |