| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_sync_manager.cc", | 100 "helium/helium_sync_manager.cc", |
| 101 "helium/helium_sync_manager.h", | 101 "helium/helium_sync_manager.h", |
| 102 "helium/lww_register.h", |
| 103 "helium/lww_register_serializer.h", |
| 102 "helium/syncable.h", | 104 "helium/syncable.h", |
| 103 "helium/vector_clock.cc", | 105 "helium/vector_clock.cc", |
| 104 "helium/vector_clock.h", | 106 "helium/vector_clock.h", |
| 105 "helium/vector_clock_generator.h", | 107 "helium/vector_clock_generator.h", |
| 106 ] | 108 ] |
| 107 deps = [ | 109 deps = [ |
| 108 ":net_export", | 110 ":net_export", |
| 109 "//base", | 111 "//base", |
| 110 "//blimp/common", | 112 "//blimp/common", |
| 111 ] | 113 ] |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 "blob_channel/blob_channel_receiver_unittest.cc", | 162 "blob_channel/blob_channel_receiver_unittest.cc", |
| 161 "blob_channel/blob_channel_sender_unittest.cc", | 163 "blob_channel/blob_channel_sender_unittest.cc", |
| 162 "blob_channel/helium_blob_channel_unittest.cc", | 164 "blob_channel/helium_blob_channel_unittest.cc", |
| 163 "browser_connection_handler_unittest.cc", | 165 "browser_connection_handler_unittest.cc", |
| 164 "client_connection_manager_unittest.cc", | 166 "client_connection_manager_unittest.cc", |
| 165 "compressed_packet_unittest.cc", | 167 "compressed_packet_unittest.cc", |
| 166 "delta_encoding_unittest.cc", | 168 "delta_encoding_unittest.cc", |
| 167 "engine_authentication_handler_unittest.cc", | 169 "engine_authentication_handler_unittest.cc", |
| 168 "engine_connection_manager_unittest.cc", | 170 "engine_connection_manager_unittest.cc", |
| 169 "helium/helium_result_unittest.cc", | 171 "helium/helium_result_unittest.cc", |
| 172 "helium/lww_register_unittest.cc", |
| 170 "helium/syncable_unittest.cc", | 173 "helium/syncable_unittest.cc", |
| 171 "helium/vector_clock_generator_unittest.cc", | 174 "helium/vector_clock_generator_unittest.cc", |
| 172 "helium/vector_clock_unittest.cc", | 175 "helium/vector_clock_unittest.cc", |
| 173 "input_message_unittest.cc", | 176 "input_message_unittest.cc", |
| 174 "ssl_client_transport_unittest.cc", | 177 "ssl_client_transport_unittest.cc", |
| 175 "stream_packet_reader_unittest.cc", | 178 "stream_packet_reader_unittest.cc", |
| 176 "stream_packet_writer_unittest.cc", | 179 "stream_packet_writer_unittest.cc", |
| 177 "tcp_transport_unittest.cc", | 180 "tcp_transport_unittest.cc", |
| 178 "thread_pipe_manager_unittest.cc", | 181 "thread_pipe_manager_unittest.cc", |
| 179 ] | 182 ] |
| 180 | 183 |
| 181 deps = [ | 184 deps = [ |
| 182 ":helium", | 185 ":helium", |
| 183 ":net", | 186 ":net", |
| 184 ":test_support", | 187 ":test_support", |
| 185 "//base", | 188 "//base", |
| 186 "//base/test:test_support", | 189 "//base/test:test_support", |
| 187 "//blimp/common", | 190 "//blimp/common", |
| 188 "//blimp/common:test_support", | 191 "//blimp/common:test_support", |
| 189 "//blimp/common/proto", | 192 "//blimp/common/proto", |
| 190 "//net:test_support", | 193 "//net:test_support", |
| 191 "//testing/gmock", | 194 "//testing/gmock", |
| 192 "//testing/gtest", | 195 "//testing/gtest", |
| 193 "//third_party/WebKit/public:blink_headers", | 196 "//third_party/WebKit/public:blink_headers", |
| 194 ] | 197 ] |
| 195 } | 198 } |
| OLD | NEW |