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

Unified Diff: third_party/mojo/src/mojo/public/mojo_application.gni

Issue 1413753005: GN: Remove mentions of lib.stripped (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « chrome/android/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
]
« no previous file with comments | « chrome/android/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698