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

Unified Diff: mojo/runner/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: mojo/runner/BUILD.gn
diff --git a/mojo/runner/BUILD.gn b/mojo/runner/BUILD.gn
index eacefb61a87f2ac52f3b86e200deb4492005507f..7740e83f0647838a511dfef8052b434bc459fb4d 100644
--- a/mojo/runner/BUILD.gn
+++ b/mojo/runner/BUILD.gn
@@ -306,8 +306,8 @@ if (is_android) {
]
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",
]
apptest_outputs = [
@@ -340,7 +340,7 @@ if (is_android) {
"$root_out_dir/exe.stripped/mojo_runner",
]
outputs = [
- "$root_out_dir/lib.stripped/libmojo_runner$android_product_extension",
+ "$root_shlib_dir/${shlib_prefix}mojo_runner$shlib_extension",
]
deps = [
":mojo_runner",
@@ -368,7 +368,7 @@ if (is_android) {
testonly = true
apk_name = "MojoRunnerApptests"
android_manifest = "android/apk/AndroidManifest.xml"
- native_libs = [ "libmojo_runner$android_product_extension" ]
+ native_libs = [ "${shlib_prefix}mojo_runner$shlib_extension" ]
asset_location = mojo_runner_apptests_assets_dir
deps = [

Powered by Google App Engine
This is Rietveld 408576698