Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(731)

Unified Diff: mandoline/app/android/BUILD.gn

Issue 1236503002: GN: Use lib.unstripped rather than lib.stripped. Add a toolchain.gni (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn15
Patch Set: forgot to add toolchain.gni Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: mandoline/app/android/BUILD.gn
diff --git a/mandoline/app/android/BUILD.gn b/mandoline/app/android/BUILD.gn
index bfc35d74af697d4b5765d1f1d5e96adb4c3b1afa..0c13e515df1179fceb7d48247b62b9584d7d1f20 100644
--- a/mandoline/app/android/BUILD.gn
+++ b/mandoline/app/android/BUILD.gn
@@ -44,7 +44,7 @@ copy("copy_mandoline_runner") {
"$root_out_dir/exe.stripped/mandoline_runner",
]
outputs = [
- "$root_out_dir/lib.stripped/libmandoline_runner$android_product_extension",
+ "$root_shlib_dir/${shlib_prefix}mandoline_runner$shlib_extension",
]
}
@@ -61,8 +61,8 @@ copy_ex("copy_mandoline_assets") {
"//mojo/services/network",
]
sources = [
- "$root_out_dir/lib.stripped/libbootstrap$android_product_extension",
"$root_out_dir/obj/mojo/runner/bootstrap_java.dex.jar",
+ "$root_shlib_dir/${shlib_prefix}bootstrap$shlib_extension",
]
# Directories can't be specified as sources so pass manually to the script.
@@ -117,7 +117,7 @@ android_apk("mandoline_apk") {
android_manifest = "apk/AndroidManifest.xml"
- native_libs = [ "libmandoline_runner$android_product_extension" ]
+ native_libs = [ "${shlib_prefix}mandoline_runner$shlib_extension" ]
asset_location = mandoline_assets_dir

Powered by Google App Engine
This is Rietveld 408576698