gecko-dev/toolkit/crashreporter/crashreporter.mozbuild
Masatoshi Kimura e6640b566c Bug 1370061 - turn off more warnings in crashreporter code. r=ted.mielczarek
MozReview-Commit-ID: CfOXtWThTU1

--HG--
extra : rebase_source : e0e536d45a9a800333e0d8ff2cff993f39e6bdcd
2017-06-04 17:38:14 +09:00

42 lines
1.2 KiB
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/.
LOCAL_INCLUDES += [
'/toolkit/crashreporter/breakpad-client',
'/toolkit/crashreporter/google-breakpad/src',
]
# Suppress warnings in third-party code.
if CONFIG['_MSC_VER']:
CXXFLAGS += [
'-wd4005', # macro redefinition
'-wd4146', # negative unsigned
'-wd4334', # 32-bit shift to 64 bits
'-wd4804', # unsafe use of type 'bool'
]
CFLAGS += [
'-wd4312', # conversion to greater size
]
elif CONFIG['GNU_CXX']:
CXXFLAGS += [
'-Wno-unused-local-typedefs',
'-Wno-shadow',
'-Wno-deprecated-declarations',
'-Wno-bool-compare',
'-Wno-unused-but-set-variable',
]
if CONFIG['CLANG_CXX'] or CONFIG['CLANG_CL']:
CXXFLAGS += [
'-Wno-implicit-fallthrough',
'-Wno-c++11-narrowing',
]
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
DEFINES['ELFSIZE'] = 32
DEFINES['NO_STABS_SUPPORT'] = True