Chromium Code Reviews| 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) { |
|
tfarina
2015/04/21 21:49:19
non-owner lgtm for this GN change.
Though with on
davidben
2015/04/21 22:16:06
use_openssl && !is_win && !is_mac_ && !is_android
|
| + sources += [ |
| + "importer/nss_decryptor_system_nss.cc", |
| + "importer/nss_decryptor_system_nss.h", |
| + ] |
| + deps += [ |
| + "//crypto", |
| + "//crypto:platform", |
| + ] |
| } |
| if (!enable_print_preview) { |