gecko-dev/browser/app/macbuild/Contents/moz.build
serge-sans-paille ad2077c399 Bug 1896351 - Move sanitizer-related AC_SUBST and AC_DEFINE from old-configure to moz.configure r=glandium
Also:

- deactivate LLVM_SYMBOLIZER on android mozconfig as we don't cross compile it yet.
- enforce LLVM_SYMBOLIZER when fuzzing is on
- fix osx packaging to include llvm-symbolizer when fuzzing, and provide
  it through tc

Differential Revision: https://phabricator.services.mozilla.com/D210190
2024-05-29 15:28:59 +00:00

26 lines
704 B
Python

# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=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/.
defs = []
for s in (
"MOZ_GECKODRIVER",
"MOZ_ASAN",
"MOZ_TSAN",
"FUZZING",
"MOZ_CRASHREPORTER",
"MOZ_APP_NAME",
):
if CONFIG[s]:
defs.append("-D%s=%s" % (s, "1" if CONFIG[s] is True else CONFIG[s]))
GeneratedFile(
"MacOS-files.txt",
script="/python/mozbuild/mozbuild/action/preprocessor.py",
entry_point="generate",
inputs=["MacOS-files.in"],
flags=defs,
)