diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /toolkit/crashreporter/client/moz.build | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'toolkit/crashreporter/client/moz.build')
-rw-r--r-- | toolkit/crashreporter/client/moz.build | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/toolkit/crashreporter/client/moz.build b/toolkit/crashreporter/client/moz.build new file mode 100644 index 000000000..456c794af --- /dev/null +++ b/toolkit/crashreporter/client/moz.build @@ -0,0 +1,78 @@ +# -*- 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/. + +if CONFIG['OS_TARGET'] != 'Android': + Program('crashreporter') + + UNIFIED_SOURCES += [ + 'crashreporter.cpp', + ] + +if CONFIG['OS_ARCH'] == 'WINNT': + UNIFIED_SOURCES += [ + 'crashreporter_win.cpp', + ] + DEFINES['UNICODE'] = True + DEFINES['_UNICODE'] = True + USE_LIBS += [ + 'google_breakpad_libxul_s', + ] + OS_LIBS += [ + 'comctl32', + 'shell32', + 'wininet', + 'shlwapi', + ] +elif CONFIG['OS_ARCH'] == 'Darwin': + UNIFIED_SOURCES += [ + 'crashreporter_osx.mm', + 'crashreporter_unix_common.cpp', + ] + LOCAL_INCLUDES += [ + '../google-breakpad/src/common/mac', + ] + OS_LIBS += ['-framework Cocoa'] + USE_LIBS += [ + 'breakpad_common_s', + 'breakpad_mac_common_s', + ] +elif CONFIG['OS_ARCH'] == 'SunOS': + SOURCES += [ + 'crashreporter_linux.cpp', + 'crashreporter_unix.cpp', + ] + USE_LIBS += [ + 'breakpad_solaris_common_s', + ] + +if 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']: + UNIFIED_SOURCES += [ + 'crashreporter_gtk_common.cpp', + 'crashreporter_linux.cpp', + 'crashreporter_unix_common.cpp' + ] + USE_LIBS += [ + 'breakpad_linux_common_s', + ] + OS_LIBS += CONFIG['TK_LIBS'] + OS_LIBS += CONFIG['MOZ_GTHREAD_LIBS'] + CXXFLAGS += CONFIG['TK_CFLAGS'] + CXXFLAGS += CONFIG['MOZ_GTHREAD_CFLAGS'] + +if CONFIG['OS_ARCH'] == 'Linux' or CONFIG['OS_ARCH'] == 'SunOS': + FINAL_TARGET_FILES += [ + '/toolkit/themes/windows/global/throbber/Throbber-small.gif', + ] + +DEFINES['BIN_SUFFIX'] = '"%s"' % CONFIG['BIN_SUFFIX'] + +RCINCLUDE = 'crashreporter.rc' + +# Don't use the STL wrappers in the crashreporter clients; they don't +# link with -lmozalloc, and it really doesn't matter here anyway. +DISABLE_STL_WRAPPING = True + +include('/toolkit/crashreporter/crashreporter.mozbuild') |