gecko-dev/ipc/mscom/moz.build

98 строки
2.0 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/.
EXPORTS.mozilla.mscom += [
"Aggregation.h",
"AgileReference.h",
"ApartmentRegion.h",
"AsyncInvoker.h",
"COMPtrHolder.h",
"COMWrappers.h",
"EnsureMTA.h",
"Objref.h",
"PassthruProxy.h",
"ProcessRuntime.h",
"ProfilerMarkers.h",
"ProxyStream.h",
"Ptr.h",
"Utils.h",
]
DIRS += [
"mozglue",
]
SOURCES += [
"VTableBuilder.c",
]
UNIFIED_SOURCES += [
"AgileReference.cpp",
"COMWrappers.cpp",
"EnsureMTA.cpp",
"Objref.cpp",
"PassthruProxy.cpp",
"ProcessRuntime.cpp",
"ProfilerMarkers.cpp",
"ProxyStream.cpp",
"RegistrationAnnotator.cpp",
"Utils.cpp",
]
if CONFIG["ACCESSIBILITY"]:
DIRS += [
"oop",
]
EXPORTS.mozilla.mscom += [
"ActivationContext.h",
"DispatchForwarder.h",
"FastMarshaler.h",
"IHandlerProvider.h",
"Interceptor.h",
"InterceptorLog.h",
"MainThreadHandoff.h",
"MainThreadInvoker.h",
"Registration.h",
"SpinEvent.h",
"StructStream.h",
"WeakRef.h",
]
SOURCES += [
"Interceptor.cpp",
"MainThreadHandoff.cpp",
"Registration.cpp",
"SpinEvent.cpp",
"WeakRef.cpp",
]
UNIFIED_SOURCES += [
"ActivationContext.cpp",
"DispatchForwarder.cpp",
"FastMarshaler.cpp",
"InterceptorLog.cpp",
"MainThreadInvoker.cpp",
"StructStream.cpp",
]
LOCAL_INCLUDES += [
"/xpcom/base",
"/xpcom/build",
]
DEFINES["MOZ_MSCOM_REMARSHAL_NO_HANDLER"] = True
include("/ipc/chromium/chromium-config.mozbuild")
FINAL_LIBRARY = "xul"
with Files("**"):
BUG_COMPONENT = ("Core", "IPC: MSCOM")
SCHEDULES.exclusive = ["windows"]
REQUIRES_UNIFIED_BUILD = True