Commit c859f18f authored by brettw's avatar brettw Committed by Commit bot

Fix Mac GN build.

These files were being removed twice from the sources.

TBR=viettrungluu

Review URL: https://codereview.chromium.org/568153006

Cr-Commit-Position: refs/heads/master@{#295600}
parent 39186c37
...@@ -1192,11 +1192,16 @@ test("net_unittests") { ...@@ -1192,11 +1192,16 @@ test("net_unittests") {
# functionality is ported to OpenSSL. # functionality is ported to OpenSSL.
sources -= [ sources -= [
"cert/nss_cert_database_unittest.cc", "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", "cert/x509_util_nss_unittest.cc",
"quic/test_tools/crypto_test_utils_nss.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 { } else {
sources -= [ sources -= [
"cert/x509_util_openssl_unittest.cc", "cert/x509_util_openssl_unittest.cc",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment