| 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("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_demultiplexer.cc", | 10 "blimp_message_demultiplexer.cc", |
| 11 "blimp_message_demultiplexer.h", | 11 "blimp_message_demultiplexer.h", |
| 12 "blimp_message_multiplexer.cc", | 12 "blimp_message_multiplexer.cc", |
| 13 "blimp_message_multiplexer.h", | 13 "blimp_message_multiplexer.h", |
| 14 "blimp_message_output_buffer.cc", | 14 "blimp_message_output_buffer.cc", |
| 15 "blimp_message_output_buffer.h", | 15 "blimp_message_output_buffer.h", |
| 16 "blimp_message_processor.h", | 16 "blimp_message_processor.h", |
| 17 "blimp_message_pump.cc", | 17 "blimp_message_pump.cc", |
| 18 "blimp_message_pump.h", | 18 "blimp_message_pump.h", |
| 19 "blimp_message_receiver.h", | 19 "blimp_message_receiver.h", |
| 20 "blimp_net_export.h", | 20 "blimp_net_export.h", |
| 21 "blimp_transport.h", | 21 "blimp_transport.h", |
| 22 "browser_connection_handler.cc", | 22 "browser_connection_handler.cc", |
| 23 "browser_connection_handler.h", | 23 "browser_connection_handler.h", |
| 24 "client_connection_manager.cc", | 24 "client_connection_manager.cc", |
| 25 "client_connection_manager.h", | 25 "client_connection_manager.h", |
| 26 "common.cc", | 26 "common.cc", |
| 27 "common.h", | 27 "common.h", |
| 28 "connection_error_observer.h", | 28 "connection_error_observer.h", |
| 29 "connection_handler.h", | 29 "connection_handler.h", |
| 30 "engine_auth_handler.cc", |
| 31 "engine_auth_handler.h", |
| 30 "engine_connection_manager.cc", | 32 "engine_connection_manager.cc", |
| 31 "engine_connection_manager.h", | 33 "engine_connection_manager.h", |
| 32 "input_message_generator.cc", | 34 "input_message_generator.cc", |
| 33 "input_message_generator.h", | 35 "input_message_generator.h", |
| 34 "input_message_processor.cc", | 36 "input_message_processor.cc", |
| 35 "input_message_processor.h", | 37 "input_message_processor.h", |
| 36 "null_blimp_message_processor.cc", | 38 "null_blimp_message_processor.cc", |
| 37 "null_blimp_message_processor.h", | 39 "null_blimp_message_processor.h", |
| 38 "stream_packet_reader.cc", | 40 "stream_packet_reader.cc", |
| 39 "stream_packet_reader.h", | 41 "stream_packet_reader.h", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 77 |
| 76 source_set("unit_tests") { | 78 source_set("unit_tests") { |
| 77 testonly = true | 79 testonly = true |
| 78 | 80 |
| 79 sources = [ | 81 sources = [ |
| 80 "blimp_connection_unittest.cc", | 82 "blimp_connection_unittest.cc", |
| 81 "blimp_message_demultiplexer_unittest.cc", | 83 "blimp_message_demultiplexer_unittest.cc", |
| 82 "blimp_message_multiplexer_unittest.cc", | 84 "blimp_message_multiplexer_unittest.cc", |
| 83 "blimp_message_output_buffer_unittest.cc", | 85 "blimp_message_output_buffer_unittest.cc", |
| 84 "blimp_message_pump_unittest.cc", | 86 "blimp_message_pump_unittest.cc", |
| 87 "engine_auth_handler_unittest.cc", |
| 85 "engine_connection_manager_unittest.cc", | 88 "engine_connection_manager_unittest.cc", |
| 86 "input_message_unittest.cc", | 89 "input_message_unittest.cc", |
| 87 "stream_packet_reader_unittest.cc", | 90 "stream_packet_reader_unittest.cc", |
| 88 "stream_packet_writer_unittest.cc", | 91 "stream_packet_writer_unittest.cc", |
| 89 "tcp_transport_unittest.cc", | 92 "tcp_transport_unittest.cc", |
| 90 ] | 93 ] |
| 91 | 94 |
| 92 deps = [ | 95 deps = [ |
| 93 ":blimp_net", | 96 ":blimp_net", |
| 94 ":test_support", | 97 ":test_support", |
| 95 "//base", | 98 "//base", |
| 96 "//base/test:run_all_unittests", | 99 "//base/test:run_all_unittests", |
| 97 "//base/test:test_support", | 100 "//base/test:test_support", |
| 98 "//blimp/common/proto", | 101 "//blimp/common/proto", |
| 99 "//net:test_support", | 102 "//net:test_support", |
| 100 "//testing/gmock", | 103 "//testing/gmock", |
| 101 "//testing/gtest", | 104 "//testing/gtest", |
| 102 ] | 105 ] |
| 103 } | 106 } |
| OLD | NEW |