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("//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" |
11 | 11 |
12 mojo_android_application("network") { | 12 mojo_android_application("network") { |
13 output_name = "network_service" | 13 output_name = "network_service" |
14 input_so = "$root_out_dir/lib.stripped/libnetwork_service.so" | 14 input_so = "$root_out_dir/lib.stripped/libnetwork_service.so" |
15 input_dex_jar = java_library_path | 15 input_dex_jar = java_library_path |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 "//base", | 129 "//base", |
130 "//mojo/application/public/cpp:test_support", | 130 "//mojo/application/public/cpp:test_support", |
131 "//mojo/services/network/public/cpp", | 131 "//mojo/services/network/public/cpp", |
132 "//mojo/services/network/public/interfaces", | 132 "//mojo/services/network/public/interfaces", |
133 "//net", | 133 "//net", |
134 "//net:test_support", | 134 "//net:test_support", |
135 "//testing/gtest", | 135 "//testing/gtest", |
136 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 136 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
137 ] | 137 ] |
138 } | 138 } |
OLD | NEW |