0

Switch Mac over to BoringSSL from NSS.

This is a much much larger change than the diff suggests. If it breaks
something, please revert first and ask questions later.

BUG=338885

Review URL: https://codereview.chromium.org/539163002

Cr-Commit-Position: refs/heads/master@{#294233}
This commit is contained in:
davidben
2014-09-10 14:20:21 -07:00
committed by Commit bot
parent 11bb859312
commit dd7edfa679
2 changed files with 7 additions and 2 deletions

@ -205,6 +205,11 @@
'enable_hidpi%': 1,
}],
# Enable the OpenSSL backend on Mac OS.
['OS=="mac"', {
'use_openssl%': 1,
}],
# Enable App Launcher everywhere but mobile.
['OS!="ios" and OS!="android"', {
'enable_app_list%': 1,

@ -8,9 +8,9 @@
# the global build dependency on it should be removed.
declare_args() {
# Use OpenSSL instead of NSS. This is used for Android and NaCl untrusted
# Use OpenSSL instead of NSS. This is used for Android, Mac, and NaCl untrusted
# code, and is experimental in other cases (see http://crbug.com/62803).
use_openssl = is_android || is_nacl
use_openssl = is_android || is_mac || is_nacl
}
# True when we're using OpenSSL for certificate verification and storage. We