1# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2# vim: set filetype=python:
3# This Source Code Form is subject to the terms of the Mozilla Public
4# License, v. 2.0. If a copy of the MPL was not distributed with this
5# file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
7HostProgram('dump_syms')
8
9HOST_SOURCES += [
10    'dump_syms.cc',
11]
12
13HOST_CXXFLAGS += [
14    '-O2',
15    '-g',
16]
17
18# host_breakpad_linux_common_s needs to come first
19HOST_USE_LIBS += [
20    'host_breakpad_linux_common_s',
21]
22HOST_USE_LIBS += [
23    'host_breakpad_common_s',
24    'host_breakpad_dwarf_s',
25]
26
27LOCAL_INCLUDES += [
28    '../../../common/linux',
29]
30
31include('/toolkit/crashreporter/crashreporter.mozbuild')
32