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

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: 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 | « mojo/public/mojo_application.gni ('k') | mojo/services/network/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/runner/BUILD.gn
diff --git a/mojo/runner/BUILD.gn b/mojo/runner/BUILD.gn
index 89cf5eccc2636b7b2efa93b348516354c229188d..c7ec3e60ed43560bf6d2e3874c01222b96454a10 100644
--- a/mojo/runner/BUILD.gn
+++ b/mojo/runner/BUILD.gn
@@ -310,8 +310,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 = [
@@ -341,10 +341,10 @@ if (is_android) {
copy("copy_mojo_runner") {
sources = [
- "$root_out_dir/exe.stripped/mojo_runner",
+ "$root_out_dir/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",
@@ -372,7 +372,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 = [
« no previous file with comments | « mojo/public/mojo_application.gni ('k') | mojo/services/network/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698