mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
3b9223f8f9
--HG-- rename : xpcom/reflect/xptinfo/src/ShimInterfaceInfo.cpp => xpcom/reflect/xptinfo/ShimInterfaceInfo.cpp rename : xpcom/reflect/xptinfo/src/ShimInterfaceInfo.h => xpcom/reflect/xptinfo/ShimInterfaceInfo.h rename : xpcom/reflect/xptinfo/src/TODO => xpcom/reflect/xptinfo/TODO rename : xpcom/reflect/xptinfo/public/XPTInterfaceInfoManager.h => xpcom/reflect/xptinfo/XPTInterfaceInfoManager.h rename : xpcom/reflect/xptinfo/public/nsIInterfaceInfo.idl => xpcom/reflect/xptinfo/nsIInterfaceInfo.idl rename : xpcom/reflect/xptinfo/public/nsIInterfaceInfoManager.idl => xpcom/reflect/xptinfo/nsIInterfaceInfoManager.idl rename : xpcom/reflect/xptinfo/src/xptiInterfaceInfo.cpp => xpcom/reflect/xptinfo/xptiInterfaceInfo.cpp rename : xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp => xpcom/reflect/xptinfo/xptiInterfaceInfoManager.cpp rename : xpcom/reflect/xptinfo/src/xptiTypelibGuts.cpp => xpcom/reflect/xptinfo/xptiTypelibGuts.cpp rename : xpcom/reflect/xptinfo/src/xptiWorkingSet.cpp => xpcom/reflect/xptinfo/xptiWorkingSet.cpp rename : xpcom/reflect/xptinfo/public/xptinfo.h => xpcom/reflect/xptinfo/xptinfo.h rename : xpcom/reflect/xptinfo/src/xptiprivate.h => xpcom/reflect/xptinfo/xptiprivate.h
56 lines
1.3 KiB
Python
56 lines
1.3 KiB
Python
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
XPIDL_SOURCES += [
|
|
'nsICategoryManager.idl',
|
|
'nsIClassInfo.idl',
|
|
'nsIComponentManager.idl',
|
|
'nsIComponentRegistrar.idl',
|
|
'nsIFactory.idl',
|
|
'nsIModule.idl',
|
|
'nsIServiceManager.idl',
|
|
]
|
|
|
|
XPIDL_MODULE = 'xpcom_components'
|
|
|
|
EXPORTS += [
|
|
'nsCategoryManagerUtils.h',
|
|
]
|
|
|
|
EXPORTS.mozilla += [
|
|
'Module.h',
|
|
'ModuleLoader.h',
|
|
'ModuleUtils.h',
|
|
]
|
|
|
|
# nsCategoryManager.cpp and nsComponentManager.cpp cannot be built in
|
|
# unified mode because they use thea PL_ARENA_CONST_ALIGN_MASK macro
|
|
# with plarena.h.
|
|
# nsNativeComponentLoader.cpp cannot be built in unified mode because it
|
|
# forces NSPR logging.
|
|
SOURCES += [
|
|
'ManifestParser.cpp',
|
|
'nsCategoryManager.cpp',
|
|
'nsComponentManager.cpp',
|
|
'nsNativeComponentLoader.cpp',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
FINAL_LIBRARY = 'xpcom_core'
|
|
|
|
GENERATED_INCLUDES += ['..']
|
|
LOCAL_INCLUDES += [
|
|
'../base',
|
|
'../build',
|
|
'../ds',
|
|
'../reflect/xptinfo',
|
|
'/chrome/src',
|
|
'/modules/libjar',
|
|
]
|