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

Unified Diff: build/android/BUILD.gn

Issue 2333593002: Revert of Make secondary abi work for component build (Closed)
Patch Set: Created 4 years, 3 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 | « no previous file | build/android/gyp/write_build_config.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/BUILD.gn
diff --git a/build/android/BUILD.gn b/build/android/BUILD.gn
index cfca168cbaba1f609461d0c260161793872bcc21..d0486020ad98226d49e8043562e397162e2c1224 100644
--- a/build/android/BUILD.gn
+++ b/build/android/BUILD.gn
@@ -70,7 +70,7 @@
action("cpplib_stripped") {
_strip_bin = "${android_tool_prefix}strip"
_soname = "libc++_shared.so"
- _input_so = "${root_shlib_dir}/lib.unstripped/${_soname}"
+ _input_so = "${root_out_dir}/lib.unstripped/${_soname}"
_output_so = "${root_shlib_dir}/${_soname}"
deps = [
@@ -91,9 +91,9 @@
_output_so,
]
- _rebased_strip_bin = rebase_path(_strip_bin, root_build_dir)
- _rebased_input_so = rebase_path(_input_so, root_build_dir)
- _rebased_output_so = rebase_path(_output_so, root_build_dir)
+ _rebased_strip_bin = rebase_path(_strip_bin, root_out_dir)
+ _rebased_input_so = rebase_path(_input_so, root_out_dir)
+ _rebased_output_so = rebase_path(_output_so, root_out_dir)
args = [
_rebased_strip_bin,
"--strip-unneeded",
« no previous file with comments | « no previous file | build/android/gyp/write_build_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698