moz.build (1051B)
1 # -*- Mode: python; python-indent: 4; 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 7 EXPORTS.mozilla += [ 8 "SandboxReporter.h", 9 "SandboxReporterCommon.h", 10 ] 11 12 UNIFIED_SOURCES += [ 13 "SandboxReporter.cpp", 14 "SandboxReporterWrappers.cpp", 15 ] 16 17 XPCOM_MANIFESTS += [ 18 "components.conf", 19 ] 20 21 LOCAL_INCLUDES += [ 22 "/security/sandbox/linux", # SandboxLogging.h 23 ] 24 25 # Need this for base::PlatformThread 26 include("/ipc/chromium/chromium-config.mozbuild") 27 28 # Need this for safe_sprintf.h used by SandboxLogging.h, 29 # but it has to be after ipc/chromium/src. 30 LOCAL_INCLUDES += [ 31 "/security/sandbox/chromium", 32 "/security/sandbox/chromium-shim", 33 "/security/sandbox/chromium-shim/base/allocator/partition_allocator/src", 34 "/security/sandbox/chromium/base/allocator/partition_allocator/src", 35 ] 36 37 FINAL_LIBRARY = "xul"