Bug 1797894 - Set gAppData->vendor to NULL when not set otherwise. r=glandium

As suggested in the review for bug 1793005 (D158441). Sets gAppData->vendor to
NULL when otherwise falsy without changing the value set by old-configure. There
are places in the code such as BackgroundTasks.cpp from toolkit that depend on
MOZ_APP_VENDOR being a string value, empty or otherwise.

Differential Revision: https://phabricator.services.mozilla.com/D160651
This commit is contained in:
Rob Lemley 2022-11-01 23:51:51 +00:00
parent bee90b0f95
commit aa1bb4f0ca

View File

@ -29,9 +29,9 @@ def main(output, file):
for o in config.options(s)
)
appdata["flags"] = " | ".join(sorted(flags)) if flags else "0"
appdata["App:profile"] = (
'"%s"' % appdata["App:profile"] if "App:profile" in appdata else "NULL"
)
for key in ("App:vendor", "App:profile"):
# Set to NULL when not present or falsy such as an empty string
appdata[key] = '"%s"' % appdata[key] if appdata.get(key, None) else "NULL"
expected = (
"App:vendor",
"App:name",
@ -63,7 +63,7 @@ def main(output, file):
output.write(
"""#include "mozilla/XREAppData.h"
static const mozilla::StaticXREAppData sAppData = {
"%(App:vendor)s",
%(App:vendor)s,
"%(App:name)s",
"%(App:remotingname)s",
"%(App:version)s",