gecko-dev/tools/crashreporter/app.mozbuild
Mike Hommey 70f1ad55e1 Bug 1519307 - Add a new project to build useful parts of breakpad independently. r=froydnj
With `ac_add_options --enable-project=tools/crashreporter` in a
mozconfig, `./mach build` builds minidump_stackwalk, dump_syms
and fileid.

One caveat is that due to limitation in how the build system works
currently, it's cumbersome to keep dump_syms as a host program for
Gecko, and to make it a target program for this project. For now,
keep it as a host program. We're not going to use it on automation,
but it's still convenient to have for quick local builds (I've had
to resort to awful hacks downstream).

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

--HG--
extra : moz-landing-system : lando
2019-01-11 16:01:15 +00:00

33 lines
1.1 KiB
Plaintext

# 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/.
DIRS += [
'/config/external/zlib',
'/testing/tools/fileid',
'/toolkit/crashreporter/google-breakpad/src/common',
'/toolkit/crashreporter/google-breakpad/src/processor',
'/toolkit/crashreporter/rust',
'/tools/crashreporter/minidump_stackwalk',
]
if CONFIG['OS_ARCH'] == 'Linux':
DIRS += [
'/toolkit/crashreporter/google-breakpad/src/common/linux',
'/toolkit/crashreporter/google-breakpad/src/tools/linux/dump_syms',
]
if CONFIG['OS_ARCH'] == 'Darwin':
DIRS += [
'/toolkit/crashreporter/google-breakpad/src/common/mac',
'/toolkit/crashreporter/google-breakpad/src/tools/mac/dump_syms',
]
# While the Linux and Mac dump_syms can be cross-built, the Windows one can't,
# and at the moment, it's a host tool, so only build it when the host is
# Windows.
if CONFIG['HOST_OS_ARCH'] == 'WINNT':
DIRS += [
'/toolkit/crashreporter/google-breakpad/src/tools/windows/dump_syms',
]