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

Unified Diff: build/config/BUILD.gn

Issue 1565983002: Add librt to default libs on linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 | « base/third_party/libevent/BUILD.gn ('k') | device/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/BUILD.gn
diff --git a/build/config/BUILD.gn b/build/config/BUILD.gn
index 195293b801b0a22bfc11112348bc373e4f868206..2fde9041f7f6456a92a083c9a453bab577f7a2f8 100644
--- a/build/config/BUILD.gn
+++ b/build/config/BUILD.gn
@@ -388,7 +388,10 @@ config("default_libs") {
"Foundation.framework",
]
} else if (is_linux) {
- libs = [ "dl" ]
+ libs = [
+ "dl",
+ "rt",
+ ]
}
}
« no previous file with comments | « base/third_party/libevent/BUILD.gn ('k') | device/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698