| 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", | 10 "blimp_connection_statistics.cc", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//base", | 80 "//base", |
| 81 "//blimp/common", | 81 "//blimp/common", |
| 82 "//blimp/common/proto", | |
| 83 "//net", | 82 "//net", |
| 84 "//third_party/WebKit/public:blink_headers", | 83 "//third_party/WebKit/public:blink_headers", |
| 85 "//third_party/zlib", | 84 "//third_party/zlib", |
| 86 "//ui/base/ime:text_input_types", | 85 "//ui/base/ime:text_input_types", |
| 87 ] | 86 ] |
| 87 |
| 88 public_deps = [ |
| 89 "//blimp/common/proto", |
| 90 ] |
| 88 } | 91 } |
| 89 | 92 |
| 90 source_set("test_support") { | 93 source_set("test_support") { |
| 91 testonly = true | 94 testonly = true |
| 92 | 95 |
| 93 sources = [ | 96 sources = [ |
| 94 "blob_channel/mock_blob_channel_receiver.cc", | 97 "blob_channel/mock_blob_channel_receiver.cc", |
| 95 "blob_channel/mock_blob_channel_receiver.h", | 98 "blob_channel/mock_blob_channel_receiver.h", |
| 96 "blob_channel/mock_blob_channel_sender.cc", | 99 "blob_channel/mock_blob_channel_sender.cc", |
| 97 "blob_channel/mock_blob_channel_sender.h", | 100 "blob_channel/mock_blob_channel_sender.h", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 "//base/test:test_support", | 149 "//base/test:test_support", |
| 147 "//blimp/common", | 150 "//blimp/common", |
| 148 "//blimp/common:test_support", | 151 "//blimp/common:test_support", |
| 149 "//blimp/common/proto", | 152 "//blimp/common/proto", |
| 150 "//net:test_support", | 153 "//net:test_support", |
| 151 "//testing/gmock", | 154 "//testing/gmock", |
| 152 "//testing/gtest", | 155 "//testing/gtest", |
| 153 "//third_party/WebKit/public:blink_headers", | 156 "//third_party/WebKit/public:blink_headers", |
| 154 ] | 157 ] |
| 155 } | 158 } |
| OLD | NEW |