Index: chrome/utility/BUILD.gn |
diff --git a/chrome/utility/BUILD.gn b/chrome/utility/BUILD.gn |
index c469307e10a76cad2fae501d136d89cd9d324839..dbf408f7f39ddb0dddf37ad76fdb9fdc4538ac88 100644 |
--- a/chrome/utility/BUILD.gn |
+++ b/chrome/utility/BUILD.gn |
@@ -83,21 +83,15 @@ static_library("utility") { |
} |
} |
- if (use_openssl) { |
- if (!is_win && !is_mac && !is_android) { |
- sources -= [ "importer/nss_decryptor.cc" ] |
- } |
- } else { # !use_openssl |
- if (!is_win && !is_mac) { |
- sources += [ |
- "importer/nss_decryptor_system_nss.cc", |
- "importer/nss_decryptor_system_nss.h", |
- ] |
- deps += [ |
- "//crypto", |
- "//crypto:platform", |
- ] |
- } |
+ if (use_nss_certs) { |
+ sources += [ |
+ "importer/nss_decryptor_system_nss.cc", |
+ "importer/nss_decryptor_system_nss.h", |
+ ] |
+ deps += [ |
+ "//crypto", |
+ "//crypto:platform", |
+ ] |
} |
if (!enable_print_preview) { |