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

Unified Diff: third_party/libc++abi/BUILD.gn

Issue 2946073002: Fix libc++ ARM build (Closed)
Patch Set: Condition on is_linux too Created 3 years, 6 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 | « third_party/libc++/BUILD.gn ('k') | third_party/libunwind/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libc++abi/BUILD.gn
diff --git a/third_party/libc++abi/BUILD.gn b/third_party/libc++abi/BUILD.gn
index 7399788bac77d11f008f829e7c64369cc70944dc..fb0fdd15baaf65058d380e62a577b7bc4f56930c 100644
--- a/third_party/libc++abi/BUILD.gn
+++ b/third_party/libc++abi/BUILD.gn
@@ -4,6 +4,9 @@
source_set("libc++abi") {
visibility = [ "//buildtools/third_party/libc++" ]
+ if (is_linux && target_cpu == "arm") {
+ deps = [ "//buildtools/third_party/libunwind" ]
+ }
sources = [
"trunk/src/abort_message.cpp",
"trunk/src/cxa_aux_runtime.cpp",
« no previous file with comments | « third_party/libc++/BUILD.gn ('k') | third_party/libunwind/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698