OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 5 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 | 9 |
10 java_library_path = "$target_out_dir/java_library.dex.jar" | 10 java_library_path = "$target_out_dir/java_library.dex.jar" |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "network_service_impl.cc", | 69 "network_service_impl.cc", |
70 "network_service_impl.h", | 70 "network_service_impl.h", |
71 "tcp_bound_socket_impl.cc", | 71 "tcp_bound_socket_impl.cc", |
72 "tcp_bound_socket_impl.h", | 72 "tcp_bound_socket_impl.h", |
73 "tcp_connected_socket_impl.cc", | 73 "tcp_connected_socket_impl.cc", |
74 "tcp_connected_socket_impl.h", | 74 "tcp_connected_socket_impl.h", |
75 "tcp_server_socket_impl.cc", | 75 "tcp_server_socket_impl.cc", |
76 "tcp_server_socket_impl.h", | 76 "tcp_server_socket_impl.h", |
77 "udp_socket_impl.cc", | 77 "udp_socket_impl.cc", |
78 "udp_socket_impl.h", | 78 "udp_socket_impl.h", |
| 79 "url_loader_factory_impl.cc", |
| 80 "url_loader_factory_impl.h", |
79 "url_loader_impl.cc", | 81 "url_loader_impl.cc", |
80 "url_loader_impl.h", | 82 "url_loader_impl.h", |
81 "web_socket_impl.cc", | 83 "web_socket_impl.cc", |
82 "web_socket_impl.h", | 84 "web_socket_impl.h", |
83 ] | 85 ] |
84 | 86 |
85 deps = [ | 87 deps = [ |
86 "//base", | 88 "//base", |
87 "//mojo/application/public/cpp", | 89 "//mojo/application/public/cpp", |
88 "//mojo/services/network/public/cpp", | 90 "//mojo/services/network/public/cpp", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 "//base", | 129 "//base", |
128 "//mojo/application/public/cpp:test_support", | 130 "//mojo/application/public/cpp:test_support", |
129 "//mojo/services/network/public/cpp", | 131 "//mojo/services/network/public/cpp", |
130 "//mojo/services/network/public/interfaces", | 132 "//mojo/services/network/public/interfaces", |
131 "//net", | 133 "//net", |
132 "//net:test_support", | 134 "//net:test_support", |
133 "//testing/gtest", | 135 "//testing/gtest", |
134 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 136 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
135 ] | 137 ] |
136 } | 138 } |
OLD | NEW |