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

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: add comment Created 5 years, 4 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
« no previous file with comments | « components/resource_provider/BUILD.gn ('k') | mandoline/services/core_services/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/app/android/BUILD.gn
diff --git a/mandoline/app/android/BUILD.gn b/mandoline/app/android/BUILD.gn
index bfc35d74af697d4b5765d1f1d5e96adb4c3b1afa..e5f9f59762713c2e372b715894f06b343d16fbf8 100644
--- a/mandoline/app/android/BUILD.gn
+++ b/mandoline/app/android/BUILD.gn
@@ -41,10 +41,10 @@ copy("copy_mandoline_runner") {
":mandoline_runner",
]
sources = [
- "$root_out_dir/exe.stripped/mandoline_runner",
+ "$root_out_dir/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
« no previous file with comments | « components/resource_provider/BUILD.gn ('k') | mandoline/services/core_services/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698