| Index: crypto/rsa_private_key_nss_unittest.cc
|
| diff --git a/crypto/rsa_private_key_nss_unittest.cc b/crypto/rsa_private_key_nss_unittest.cc
|
| index 98360e810d7dd9678ec94c34a24ad0231e90af9e..f49f2be04a24f4e8f64dd6454e0b0cc8b26dcea3 100644
|
| --- a/crypto/rsa_private_key_nss_unittest.cc
|
| +++ b/crypto/rsa_private_key_nss_unittest.cc
|
| @@ -13,6 +13,10 @@
|
|
|
| namespace crypto {
|
|
|
| +// TODO(davidben): These tests assume NSS is used for both the internal crypto
|
| +// library and the platform key store. See https://crbug.com/462040.
|
| +#if !defined(USE_NSS)
|
| +
|
| class RSAPrivateKeyNSSTest : public testing::Test {
|
| public:
|
| RSAPrivateKeyNSSTest() {}
|
| @@ -57,4 +61,6 @@ TEST_F(RSAPrivateKeyNSSTest, FailedFindFromPublicKey) {
|
| EXPECT_EQ(NULL, crypto::RSAPrivateKey::FindFromPublicKeyInfo(public_key));
|
| }
|
|
|
| +#endif // !USE_NSS
|
| +
|
| } // namespace crypto
|
|
|