| 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_engine_transport.h", | 10 "blimp_engine_transport.h", |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "thread_pipe_manager.cc", | 81 "thread_pipe_manager.cc", |
| 82 "thread_pipe_manager.h", | 82 "thread_pipe_manager.h", |
| 83 ] | 83 ] |
| 84 | 84 |
| 85 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] | 85 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] |
| 86 | 86 |
| 87 deps = [ | 87 deps = [ |
| 88 ":net_export", | 88 ":net_export", |
| 89 "//base", | 89 "//base", |
| 90 "//blimp/common", | 90 "//blimp/common", |
| 91 "//blimp/helium", | |
| 92 "//content/public/browser", | 91 "//content/public/browser", |
| 93 "//net", | 92 "//net", |
| 94 "//third_party/WebKit/public:blink_headers", | 93 "//third_party/WebKit/public:blink_headers", |
| 95 "//third_party/grpc:grpc++_unsecure", | 94 "//third_party/grpc:grpc++_unsecure", |
| 96 "//third_party/zlib", | 95 "//third_party/zlib", |
| 97 "//ui/base/ime:text_input_types", | 96 "//ui/base/ime:text_input_types", |
| 98 ] | 97 ] |
| 99 | 98 |
| 100 public_deps = [ | 99 public_deps = [ |
| 101 "//blimp/common/proto", | 100 "//blimp/common/proto", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 "//blimp/common", | 168 "//blimp/common", |
| 170 "//blimp/common:test_support", | 169 "//blimp/common:test_support", |
| 171 "//blimp/common/proto", | 170 "//blimp/common/proto", |
| 172 "//net:test_support", | 171 "//net:test_support", |
| 173 "//testing/gmock", | 172 "//testing/gmock", |
| 174 "//testing/gtest", | 173 "//testing/gtest", |
| 175 "//third_party/WebKit/public:blink_headers", | 174 "//third_party/WebKit/public:blink_headers", |
| 176 "//third_party/grpc:grpc++_unsecure", | 175 "//third_party/grpc:grpc++_unsecure", |
| 177 ] | 176 ] |
| 178 } | 177 } |
| OLD | NEW |