| 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("net") { |
| 6 output_name = "blimp_net" |
| 6 sources = [ | 7 sources = [ |
| 7 "blimp_connection.cc", | 8 "blimp_connection.cc", |
| 8 "blimp_connection.h", | 9 "blimp_connection.h", |
| 9 "blimp_message_checkpoint_observer.h", | 10 "blimp_message_checkpoint_observer.h", |
| 10 "blimp_message_checkpointer.cc", | 11 "blimp_message_checkpointer.cc", |
| 11 "blimp_message_checkpointer.h", | 12 "blimp_message_checkpointer.h", |
| 12 "blimp_message_demultiplexer.cc", | 13 "blimp_message_demultiplexer.cc", |
| 13 "blimp_message_demultiplexer.h", | 14 "blimp_message_demultiplexer.h", |
| 14 "blimp_message_multiplexer.cc", | 15 "blimp_message_multiplexer.cc", |
| 15 "blimp_message_multiplexer.h", | 16 "blimp_message_multiplexer.h", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "tcp_engine_transport.cc", | 60 "tcp_engine_transport.cc", |
| 60 "tcp_engine_transport.h", | 61 "tcp_engine_transport.h", |
| 61 "thread_pipe_manager.cc", | 62 "thread_pipe_manager.cc", |
| 62 "thread_pipe_manager.h", | 63 "thread_pipe_manager.h", |
| 63 ] | 64 ] |
| 64 | 65 |
| 65 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] | 66 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] |
| 66 | 67 |
| 67 deps = [ | 68 deps = [ |
| 68 "//base", | 69 "//base", |
| 69 "//blimp/common:blimp_common", | 70 "//blimp/common", |
| 70 "//blimp/common/proto", | 71 "//blimp/common/proto", |
| 71 "//net", | 72 "//net", |
| 72 "//third_party/WebKit/public:blink_headers", | 73 "//third_party/WebKit/public:blink_headers", |
| 73 "//third_party/zlib", | 74 "//third_party/zlib", |
| 74 "//ui/base/ime:text_input_types", | 75 "//ui/base/ime:text_input_types", |
| 75 ] | 76 ] |
| 76 } | 77 } |
| 77 | 78 |
| 78 source_set("test_support") { | 79 source_set("test_support") { |
| 79 testonly = true | 80 testonly = true |
| 80 | 81 |
| 81 sources = [ | 82 sources = [ |
| 82 "test_common.cc", | 83 "test_common.cc", |
| 83 "test_common.h", | 84 "test_common.h", |
| 84 ] | 85 ] |
| 85 | 86 |
| 86 deps = [ | 87 deps = [ |
| 87 ":blimp_net", | 88 ":net", |
| 88 "//blimp/common/proto", | 89 "//blimp/common/proto", |
| 89 "//net:test_support", | 90 "//net:test_support", |
| 90 "//testing/gmock", | 91 "//testing/gmock", |
| 91 ] | 92 ] |
| 92 } | 93 } |
| 93 | 94 |
| 94 source_set("unit_tests") { | 95 source_set("unit_tests") { |
| 95 testonly = true | 96 testonly = true |
| 96 | 97 |
| 97 sources = [ | 98 sources = [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 109 "engine_connection_manager_unittest.cc", | 110 "engine_connection_manager_unittest.cc", |
| 110 "input_message_unittest.cc", | 111 "input_message_unittest.cc", |
| 111 "ssl_client_transport_unittest.cc", | 112 "ssl_client_transport_unittest.cc", |
| 112 "stream_packet_reader_unittest.cc", | 113 "stream_packet_reader_unittest.cc", |
| 113 "stream_packet_writer_unittest.cc", | 114 "stream_packet_writer_unittest.cc", |
| 114 "tcp_transport_unittest.cc", | 115 "tcp_transport_unittest.cc", |
| 115 "thread_pipe_manager_unittest.cc", | 116 "thread_pipe_manager_unittest.cc", |
| 116 ] | 117 ] |
| 117 | 118 |
| 118 deps = [ | 119 deps = [ |
| 119 ":blimp_net", | 120 ":net", |
| 120 ":test_support", | 121 ":test_support", |
| 121 "//base", | 122 "//base", |
| 122 "//base/test:run_all_unittests", | 123 "//base/test:run_all_unittests", |
| 123 "//base/test:test_support", | 124 "//base/test:test_support", |
| 124 "//blimp/common:blimp_common", | 125 "//blimp/common", |
| 125 "//blimp/common/proto", | 126 "//blimp/common/proto", |
| 126 "//net:test_support", | 127 "//net:test_support", |
| 127 "//testing/gmock", | 128 "//testing/gmock", |
| 128 "//testing/gtest", | 129 "//testing/gtest", |
| 129 "//third_party/WebKit/public:blink_headers", | 130 "//third_party/WebKit/public:blink_headers", |
| 130 ] | 131 ] |
| 131 } | 132 } |
| OLD | NEW |