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

Unified Diff: net/BUILD.gn

Issue 568153006: Fix Mac GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment fix Created 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index c461a0f0056cde3151dde58580ba5dacdb3ae8fa..05da14c455c4adfbe96f9cd170fde82970530899 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1192,11 +1192,16 @@ test("net_unittests") {
# functionality is ported to OpenSSL.
sources -= [
"cert/nss_cert_database_unittest.cc",
- "cert/nss_cert_database_chromeos_unittest.cc",
- "cert/nss_profile_filter_chromeos_unittest.cc",
"cert/x509_util_nss_unittest.cc",
"quic/test_tools/crypto_test_utils_nss.cc",
]
+ if (is_chromeos) {
+ # These were already removed in the non-ChromeOS case.
+ sources -= [
+ "cert/nss_cert_database_chromeos_unittest.cc",
+ "cert/nss_profile_filter_chromeos_unittest.cc",
+ ]
+ }
} else {
sources -= [
"cert/x509_util_openssl_unittest.cc",
« 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