Chromium Code Reviews| Index: net/BUILD.gn |
| diff --git a/net/BUILD.gn b/net/BUILD.gn |
| index c461a0f0056cde3151dde58580ba5dacdb3ae8fa..8bd3f8d6e1aa609192d185604c193c9ddedf0dd8 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 ChromeOS case. |
|
viettrungluu
2014/09/17 23:03:31
Did you mean "These were already removed in the no
brettw
2014/09/18 20:22:16
Done.
|
| + sources -= [ |
| + "cert/nss_cert_database_chromeos_unittest.cc", |
| + "cert/nss_profile_filter_chromeos_unittest.cc", |
| + ] |
| + } |
| } else { |
| sources -= [ |
| "cert/x509_util_openssl_unittest.cc", |