Bug 1885602 - Part 5: Implement navigating to the SUMO help topic from the menu heade...
[gecko.git] / toolkit / crashreporter / injector / moz.build
blob05aa9af37d06300d51962568076ceda2220d31c4
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/.
7 SOURCES += [
8     "injector.cpp",
11 SharedLibrary("breakpadinjector")
13 include("/ipc/chromium/chromium-config.mozbuild")
15 LOCAL_INCLUDES += [
16     "/toolkit/crashreporter/breakpad-client",
17     "/toolkit/crashreporter/google-breakpad/src",
20 USE_STATIC_LIBS = True
22 if CONFIG["CC_TYPE"] in ("clang", "gcc"):
23     LDFLAGS += ["-Wl,-e,_DummyEntryPoint@12"]
24 else:
25     LDFLAGS += ["-ENTRY:DummyEntryPoint"]
27 DisableStlWrapping()