| 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_connection_statistics.cc", | |
| 11 "blimp_connection_statistics.h", | |
| 12 "blimp_message_checkpoint_observer.h", | 10 "blimp_message_checkpoint_observer.h", |
| 13 "blimp_message_checkpointer.cc", | 11 "blimp_message_checkpointer.cc", |
| 14 "blimp_message_checkpointer.h", | 12 "blimp_message_checkpointer.h", |
| 15 "blimp_message_demultiplexer.cc", | 13 "blimp_message_demultiplexer.cc", |
| 16 "blimp_message_demultiplexer.h", | 14 "blimp_message_demultiplexer.h", |
| 17 "blimp_message_multiplexer.cc", | 15 "blimp_message_multiplexer.cc", |
| 18 "blimp_message_multiplexer.h", | 16 "blimp_message_multiplexer.h", |
| 19 "blimp_message_output_buffer.cc", | 17 "blimp_message_output_buffer.cc", |
| 20 "blimp_message_output_buffer.h", | 18 "blimp_message_output_buffer.h", |
| 21 "blimp_message_processor.h", | 19 "blimp_message_processor.h", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 "//blimp/common/proto", | 93 "//blimp/common/proto", |
| 96 "//net:test_support", | 94 "//net:test_support", |
| 97 "//testing/gmock", | 95 "//testing/gmock", |
| 98 ] | 96 ] |
| 99 } | 97 } |
| 100 | 98 |
| 101 source_set("unit_tests") { | 99 source_set("unit_tests") { |
| 102 testonly = true | 100 testonly = true |
| 103 | 101 |
| 104 sources = [ | 102 sources = [ |
| 105 "blimp_connection_statistics_unittest.cc", | |
| 106 "blimp_connection_unittest.cc", | 103 "blimp_connection_unittest.cc", |
| 107 "blimp_message_checkpointer_unittest.cc", | 104 "blimp_message_checkpointer_unittest.cc", |
| 108 "blimp_message_demultiplexer_unittest.cc", | 105 "blimp_message_demultiplexer_unittest.cc", |
| 109 "blimp_message_multiplexer_unittest.cc", | 106 "blimp_message_multiplexer_unittest.cc", |
| 110 "blimp_message_output_buffer_unittest.cc", | 107 "blimp_message_output_buffer_unittest.cc", |
| 111 "blimp_message_pump_unittest.cc", | 108 "blimp_message_pump_unittest.cc", |
| 112 "blimp_message_thread_pipe_unittest.cc", | 109 "blimp_message_thread_pipe_unittest.cc", |
| 113 "blob_channel/blob_channel_integration_test.cc", | 110 "blob_channel/blob_channel_integration_test.cc", |
| 114 "blob_channel/blob_channel_receiver_unittest.cc", | 111 "blob_channel/blob_channel_receiver_unittest.cc", |
| 115 "blob_channel/blob_channel_sender_unittest.cc", | 112 "blob_channel/blob_channel_sender_unittest.cc", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 134 "//base/test:test_support", | 131 "//base/test:test_support", |
| 135 "//blimp/common", | 132 "//blimp/common", |
| 136 "//blimp/common:test_support", | 133 "//blimp/common:test_support", |
| 137 "//blimp/common/proto", | 134 "//blimp/common/proto", |
| 138 "//net:test_support", | 135 "//net:test_support", |
| 139 "//testing/gmock", | 136 "//testing/gmock", |
| 140 "//testing/gtest", | 137 "//testing/gtest", |
| 141 "//third_party/WebKit/public:blink_headers", | 138 "//third_party/WebKit/public:blink_headers", |
| 142 ] | 139 ] |
| 143 } | 140 } |
| OLD | NEW |