Backed out changeset e20e32462008 (bug 1678384) for causing build bustages complaining about generate_certdata-testlib. CLOSED TREE

This commit is contained in:
Butkovits Atila 2021-01-20 18:51:35 +02:00
Родитель 3073a91c90
Коммит 04e8f8d535
2 изменённых файлов: 0 добавлений и 26 удалений

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

@ -1,23 +0,0 @@
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This exists to paper over differences between gyp's `action` definitions
# and moz.build `GENERATED_FILES` semantics.
import buildconfig
import os
import subprocess
def main(output, *inputs):
env = dict(os.environ)
env["PERL"] = str(buildconfig.substs["PERL"])
output.write(
subprocess.check_output(
[buildconfig.substs["PYTHON3"], inputs[0], inputs[2]], env=env
)
)
return None

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

@ -81,8 +81,6 @@ gyp_vars["nss_dist_dir"] = "$PRODUCT_DIR/dist"
# This forces it to put them in dist/include/nss.
gyp_vars["nss_public_dist_dir"] = "$PRODUCT_DIR/dist"
gyp_vars["nss_dist_obj_dir"] = "$PRODUCT_DIR/dist/bin"
# We need specific features and tests on mozilla-central.
gyp_vars["mozilla_central"] = 1
# We don't currently build NSS tests.
gyp_vars["disable_tests"] = 1
gyp_vars["disable_dbm"] = 1
@ -155,7 +153,6 @@ GYP_DIRS["nss"].no_unified = True
# Python scripts that can be used in moz.build GENERATED_FILES.
GYP_DIRS["nss"].action_overrides = {
"generate_certdata_c": "generate_certdata.py",
"generate_certdata_testlib_c": "generate_certdata_testlib.py",
"generate_mapfile": "generate_mapfile.py",
}