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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 | 10 |
11 java_library_path = "$target_out_dir/java_library.dex.jar" | 11 java_library_path = "$target_out_dir/java_library.dex.jar" |
12 | 12 |
13 mojo_android_application("resource_provider") { | 13 mojo_android_application("resource_provider") { |
14 input_so = "$root_out_dir/lib.stripped/libresource_provider_lib$android_prod
uct_extension" | 14 input_so = |
| 15 "$root_shlib_dir/${shlib_prefix}resource_provider_lib$shlib_extension" |
15 input_dex_jar = java_library_path | 16 input_dex_jar = java_library_path |
16 deps = [ | 17 deps = [ |
17 ":java_library", | 18 ":java_library", |
18 ":resource_provider_lib", | 19 ":resource_provider_lib", |
19 "//third_party/icu:icudata", | 20 "//third_party/icu:icudata", |
20 ] | 21 ] |
21 | 22 |
22 resources = [ "$root_out_dir/icudtl.dat" ] | 23 resources = [ "$root_out_dir/icudtl.dat" ] |
23 } | 24 } |
24 | 25 |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 "//base", | 135 "//base", |
135 "//base/test:test_config", | 136 "//base/test:test_config", |
136 "//components/resource_provider/public/cpp", | 137 "//components/resource_provider/public/cpp", |
137 "//components/resource_provider/public/interfaces", | 138 "//components/resource_provider/public/interfaces", |
138 "//mojo/application/public/cpp:test_support", | 139 "//mojo/application/public/cpp:test_support", |
139 "//mojo/platform_handle", | 140 "//mojo/platform_handle", |
140 ] | 141 ] |
141 | 142 |
142 data_deps = [ ":resource_provider" ] | 143 data_deps = [ ":resource_provider" ] |
143 } | 144 } |
OLD | NEW |