| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "tcp_client_transport.h", | 70 "tcp_client_transport.h", |
| 71 "tcp_engine_transport.cc", | 71 "tcp_engine_transport.cc", |
| 72 "tcp_engine_transport.h", | 72 "tcp_engine_transport.h", |
| 73 "thread_pipe_manager.cc", | 73 "thread_pipe_manager.cc", |
| 74 "thread_pipe_manager.h", | 74 "thread_pipe_manager.h", |
| 75 ] | 75 ] |
| 76 | 76 |
| 77 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] | 77 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] |
| 78 | 78 |
| 79 deps = [ | 79 deps = [ |
| 80 ":helium", |
| 80 "//base", | 81 "//base", |
| 81 "//blimp/common", | 82 "//blimp/common", |
| 82 "//net", | 83 "//net", |
| 83 "//third_party/WebKit/public:blink_headers", | 84 "//third_party/WebKit/public:blink_headers", |
| 84 "//third_party/zlib", | 85 "//third_party/zlib", |
| 85 "//ui/base/ime:text_input_types", | 86 "//ui/base/ime:text_input_types", |
| 86 ] | 87 ] |
| 87 | 88 |
| 88 public_deps = [ | 89 public_deps = [ |
| 89 "//blimp/common/proto", | 90 "//blimp/common/proto", |
| 90 ] | 91 ] |
| 91 } | 92 } |
| 92 | 93 |
| 94 source_set("helium") { |
| 95 sources = [ |
| 96 "helium/helium_stream.cc", |
| 97 "helium/helium_stream.h", |
| 98 "helium/helium_transport.h", |
| 99 ] |
| 100 } |
| 101 |
| 93 source_set("test_support") { | 102 source_set("test_support") { |
| 94 testonly = true | 103 testonly = true |
| 95 | 104 |
| 96 sources = [ | 105 sources = [ |
| 97 "blob_channel/mock_blob_channel_receiver.cc", | 106 "blob_channel/mock_blob_channel_receiver.cc", |
| 98 "blob_channel/mock_blob_channel_receiver.h", | 107 "blob_channel/mock_blob_channel_receiver.h", |
| 99 "blob_channel/mock_blob_channel_sender.cc", | 108 "blob_channel/mock_blob_channel_sender.cc", |
| 100 "blob_channel/mock_blob_channel_sender.h", | 109 "blob_channel/mock_blob_channel_sender.h", |
| 101 "test_common.cc", | 110 "test_common.cc", |
| 102 "test_common.h", | 111 "test_common.h", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 "//base/test:test_support", | 158 "//base/test:test_support", |
| 150 "//blimp/common", | 159 "//blimp/common", |
| 151 "//blimp/common:test_support", | 160 "//blimp/common:test_support", |
| 152 "//blimp/common/proto", | 161 "//blimp/common/proto", |
| 153 "//net:test_support", | 162 "//net:test_support", |
| 154 "//testing/gmock", | 163 "//testing/gmock", |
| 155 "//testing/gtest", | 164 "//testing/gtest", |
| 156 "//third_party/WebKit/public:blink_headers", | 165 "//third_party/WebKit/public:blink_headers", |
| 157 ] | 166 ] |
| 158 } | 167 } |
| OLD | NEW |