| Index: chrome/common/BUILD.gn
|
| diff --git a/chrome/common/BUILD.gn b/chrome/common/BUILD.gn
|
| index 3d9281921762ef35294ff360e3eb36d0259d5852..0e114c1edd04bdfd6e6a9a103b0c454cd2d8b376 100644
|
| --- a/chrome/common/BUILD.gn
|
| +++ b/chrome/common/BUILD.gn
|
| @@ -113,15 +113,23 @@ static_library("common") {
|
| if (is_win || is_mac) {
|
| sources +=
|
| rebase_path(gypi_values.chrome_common_win_mac_sources, ".", "//chrome")
|
| + deps += [ "//breakpad:client" ]
|
| + }
|
| + if (is_win || is_mac || is_chromeos) {
|
| if (use_openssl) {
|
| - sources -= [ "extensions/api/networking_private/networking_private_crypto_nss.cc" ]
|
| + sources += rebase_path(
|
| + gypi_values.chrome_common_networking_private_sources_openssl,
|
| + ".",
|
| + "//chrome")
|
|
|
| # networking_private_crypto_openssl.cc depends on boringssl.
|
| deps += [ "//third_party/boringssl" ]
|
| } else {
|
| - sources -= [ "extensions/api/networking_private/networking_private_crypto_openssl.cc" ]
|
| + sources +=
|
| + rebase_path(gypi_values.chrome_common_networking_private_sources_nss,
|
| + ".",
|
| + "//chrome")
|
| }
|
| - deps += [ "//breakpad:client" ]
|
| }
|
| if (is_mac) {
|
| sources +=
|
|
|