Index: third_party/mojo/src/mojo/public/mojo_application.gni |
diff --git a/third_party/mojo/src/mojo/public/mojo_application.gni b/third_party/mojo/src/mojo/public/mojo_application.gni |
index d1327ea44e9fec3066f90c2981a23e6a9bd94f0b..cd75691c0497b913324a353c463629dc9e3d9024 100644 |
--- a/third_party/mojo/src/mojo/public/mojo_application.gni |
+++ b/third_party/mojo/src/mojo/public/mojo_application.gni |
@@ -31,13 +31,7 @@ template("mojo_native_application") { |
assert(false, "Platform not supported.") |
} |
- if (is_android) { |
- # On android, use the stripped version of the library, because applications |
- # are always fetched over the network. |
- library_dir = "${root_out_dir}/lib.stripped" |
- } else { |
- library_dir = root_out_dir |
- } |
+ library_dir = root_out_dir |
shared_library(library_target_name) { |
if (defined(invoker.cflags)) { |
@@ -407,7 +401,7 @@ if (is_android) { |
script = "//build/android/gn/zip.py" |
inputs = [ |
- "${root_out_dir}/lib.stripped/${library_basename}", |
+ "${root_out_dir}/${library_basename}", |
dex_output_path, |
] |