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

Unified Diff: build/secondary/third_party/nss/BUILD.gn

Issue 1553193002: Roll NSS by one revision (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: how do i git Created 4 years, 12 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 | « DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/secondary/third_party/nss/BUILD.gn
diff --git a/build/secondary/third_party/nss/BUILD.gn b/build/secondary/third_party/nss/BUILD.gn
index 7060f0796b60ef8376bc6e22b8a5a24ff4f25a3e..7b32a04cbf850f9d902011f12cc2466cc6320b0e 100644
--- a/build/secondary/third_party/nss/BUILD.gn
+++ b/build/secondary/third_party/nss/BUILD.gn
@@ -1188,6 +1188,9 @@ if (is_linux) {
# nss doesn"t explicitly cast between different enum types.
"-Wno-conversion",
+ # nss passes "const char*" through "void*".
+ "-Wno-incompatible-pointer-types",
+
# nss prefers `a && b || c` over `(a && b) || c`.
"-Wno-logical-op-parentheses",
@@ -1196,6 +1199,9 @@ if (is_linux) {
# nss has some `unsigned < 0` checks.
"-Wno-tautological-compare",
+
+ # nss-urandom-abort.patch removed the only call to rng_systemFromNoise
+ "-Wno-unused-function",
]
}
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698