| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "network_service_impl.cc", | 65 "network_service_impl.cc", |
| 66 "network_service_impl.h", | 66 "network_service_impl.h", |
| 67 "tcp_bound_socket_impl.cc", | 67 "tcp_bound_socket_impl.cc", |
| 68 "tcp_bound_socket_impl.h", | 68 "tcp_bound_socket_impl.h", |
| 69 "tcp_connected_socket_impl.cc", | 69 "tcp_connected_socket_impl.cc", |
| 70 "tcp_connected_socket_impl.h", | 70 "tcp_connected_socket_impl.h", |
| 71 "tcp_server_socket_impl.cc", | 71 "tcp_server_socket_impl.cc", |
| 72 "tcp_server_socket_impl.h", | 72 "tcp_server_socket_impl.h", |
| 73 "udp_socket_impl.cc", | 73 "udp_socket_impl.cc", |
| 74 "udp_socket_impl.h", | 74 "udp_socket_impl.h", |
| 75 "url_loader_factory_impl.cc", |
| 76 "url_loader_factory_impl.h", |
| 75 "url_loader_impl.cc", | 77 "url_loader_impl.cc", |
| 76 "url_loader_impl.h", | 78 "url_loader_impl.h", |
| 77 "web_socket_impl.cc", | 79 "web_socket_impl.cc", |
| 78 "web_socket_impl.h", | 80 "web_socket_impl.h", |
| 79 ] | 81 ] |
| 80 | 82 |
| 81 deps = [ | 83 deps = [ |
| 82 "//base", | 84 "//base", |
| 83 "//mojo/application/public/cpp", | 85 "//mojo/application/public/cpp", |
| 84 "//mojo/services/network/public/cpp", | 86 "//mojo/services/network/public/cpp", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "//base", | 125 "//base", |
| 124 "//mojo/application/public/cpp:test_support", | 126 "//mojo/application/public/cpp:test_support", |
| 125 "//mojo/services/network/public/cpp", | 127 "//mojo/services/network/public/cpp", |
| 126 "//mojo/services/network/public/interfaces", | 128 "//mojo/services/network/public/interfaces", |
| 127 "//net", | 129 "//net", |
| 128 "//net:test_support", | 130 "//net:test_support", |
| 129 "//testing/gtest", | 131 "//testing/gtest", |
| 130 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 132 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
| 131 ] | 133 ] |
| 132 } | 134 } |
| OLD | NEW |