| 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("//mojo/public/mojo_application.gni") | 5 import("//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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "tcp_connected_socket_impl.cc", | 76 "tcp_connected_socket_impl.cc", |
| 77 "tcp_connected_socket_impl.h", | 77 "tcp_connected_socket_impl.h", |
| 78 "tcp_server_socket_impl.cc", | 78 "tcp_server_socket_impl.cc", |
| 79 "tcp_server_socket_impl.h", | 79 "tcp_server_socket_impl.h", |
| 80 "udp_socket_impl.cc", | 80 "udp_socket_impl.cc", |
| 81 "udp_socket_impl.h", | 81 "udp_socket_impl.h", |
| 82 "url_loader_factory_impl.cc", | 82 "url_loader_factory_impl.cc", |
| 83 "url_loader_factory_impl.h", | 83 "url_loader_factory_impl.h", |
| 84 "url_loader_impl.cc", | 84 "url_loader_impl.cc", |
| 85 "url_loader_impl.h", | 85 "url_loader_impl.h", |
| 86 "web_socket_factory_impl.cc", |
| 87 "web_socket_factory_impl.h", |
| 86 "web_socket_impl.cc", | 88 "web_socket_impl.cc", |
| 87 "web_socket_impl.h", | 89 "web_socket_impl.h", |
| 88 ] | 90 ] |
| 89 | 91 |
| 90 deps = [ | 92 deps = [ |
| 91 "//base", | 93 "//base", |
| 92 "//components/filesystem/public/interfaces", | 94 "//components/filesystem/public/interfaces", |
| 93 "//mojo/application/public/cpp", | 95 "//mojo/application/public/cpp", |
| 94 "//mojo/common:common_base", | 96 "//mojo/common:common_base", |
| 95 "//mojo/common:url_type_converters", | 97 "//mojo/common:url_type_converters", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "//mojo/common:common_base", | 144 "//mojo/common:common_base", |
| 143 "//mojo/message_pump", | 145 "//mojo/message_pump", |
| 144 "//mojo/services/network/public/cpp", | 146 "//mojo/services/network/public/cpp", |
| 145 "//mojo/services/network/public/interfaces", | 147 "//mojo/services/network/public/interfaces", |
| 146 "//net", | 148 "//net", |
| 147 "//net:test_support", | 149 "//net:test_support", |
| 148 "//testing/gtest", | 150 "//testing/gtest", |
| 149 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 151 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 150 ] | 152 ] |
| 151 } | 153 } |
| OLD | NEW |