Bug 1555067 - Backed out changeset 0801165e3175. r=jcj

NSS_ALLOW_SSLKEYLOGFILE no longer has issues upstream, we can allow it again.

Differential Revision: https://phabricator.services.mozilla.com/D34915

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Eric Rahm 2019-06-13 20:59:55 +00:00
Родитель 45db9df532
Коммит 67b4023a9b
1 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -254,11 +254,6 @@ def process_gyp_result(gyp_result, gyp_dir_attrs, path, config, output,
for define in defines:
if '=' in define:
name, value = define.split('=', 1)
# The NSS gyp file doesn't expose a way to override this
# currently, so we do so here.
if name == 'NSS_ALLOW_SSLKEYLOGFILE' and \
config.substs.get('RELEASE_OR_BETA', False):
continue
context['DEFINES'][name] = value
else:
context['DEFINES'][define] = True