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

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

Issue 2570443003: [counting_allocator] macOS buildtools/ changes.
Patch Set: Created 4 years 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libc++/BUILD.gn
diff --git a/third_party/libc++/BUILD.gn b/third_party/libc++/BUILD.gn
index a3c4ec26329368c29cc24c96bf8b9f8f8115483b..ec6ca74449aff43fc242163b44710564670f22d2 100644
--- a/third_party/libc++/BUILD.gn
+++ b/third_party/libc++/BUILD.gn
@@ -21,7 +21,7 @@ config("config") {
]
}
-shared_library("libc++") {
+static_library("libc++_static") {
sources = [
"trunk/src/algorithm.cpp",
"trunk/src/any.cpp",
@@ -103,6 +103,10 @@ shared_library("libc++") {
}
}
+shared_library("libc++") {
+ deps = [ ":libc++_static" ]
+}
+
group("libcxx_proxy") {
deps = [
":libc++",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698