| Index: chrome/utility/BUILD.gn
|
| diff --git a/chrome/utility/BUILD.gn b/chrome/utility/BUILD.gn
|
| index 9a1ab9da7e70a766e81bafac0c6d0809405a0863..fedccad9350b0d9141e94401a0dcc2b24ac3ce1c 100644
|
| --- a/chrome/utility/BUILD.gn
|
| +++ b/chrome/utility/BUILD.gn
|
| @@ -34,7 +34,7 @@ static_library("utility") {
|
| ".", "..")
|
| }
|
|
|
| - if (enable_extensions == 1) {
|
| + if (enable_extensions) {
|
| deps += [
|
| "//chrome/common/extensions/api",
|
| #"//third_party/libexif", TODO(GYP)
|
| @@ -63,8 +63,11 @@ static_library("utility") {
|
| }
|
| }
|
|
|
| - if (!use_openssl) {
|
| - sources -= [ "importer/nss_decryptor.cc" ]
|
| + if (use_openssl) {
|
| + if (!is_win && !is_mac) {
|
| + sources -= [ "importer/nss_decryptor.cc" ]
|
| + }
|
| + } else { # !use_openssl
|
| if (!is_win && !is_mac) {
|
| sources += [
|
| "importer/nss_decryptor_system_nss.cc",
|
|
|