mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
53 lines
1.6 KiB
Python
53 lines
1.6 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/.
|
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
|
# This is going to be a framework named "XUL", not an ordinary library named
|
|
# "libxul.dylib"
|
|
SHARED_LIBRARY_NAME = 'XUL'
|
|
IS_FRAMEWORK = True
|
|
else:
|
|
SHARED_LIBRARY_NAME = 'xul'
|
|
FORCE_SHARED_LIB = True
|
|
|
|
|
|
DELAYLOAD_DLLS += [
|
|
'comdlg32.dll',
|
|
'dbghelp.dll',
|
|
'psapi.dll',
|
|
'rasapi32.dll',
|
|
'rasdlg.dll',
|
|
'secur32.dll',
|
|
'wininet.dll',
|
|
'winspool.drv'
|
|
]
|
|
|
|
if CONFIG['MOZ_METRO']:
|
|
DELAYLOAD_DLLS += [
|
|
'API-MS-WIN-CORE-WINRT-L' + CONFIG['CRTEXPDLLVERSION'] + '.DLL',
|
|
'API-MS-WIN-CORE-WINRT-STRING-L' + CONFIG['CRTEXPDLLVERSION'] + '.DLL',
|
|
'uiautomationcore.dll'
|
|
]
|
|
|
|
if CONFIG['ACCESSIBILITY']:
|
|
DELAYLOAD_DLLS += ['oleacc.dll']
|
|
|
|
if CONFIG['MOZ_WEBRTC']:
|
|
DELAYLOAD_DLLS += ['msdmo.dll']
|
|
|
|
if CONFIG['OS_ARCH'] == 'WINNT' and not CONFIG['GNU_CC']:
|
|
LOCAL_INCLUDES += [
|
|
'/widget/windows',
|
|
'/xpcom/base',
|
|
]
|
|
# config/version.mk says $(srcdir)/$(RCINCLUDE), and this needs to
|
|
# be valid in both toolkit/library and toolkit/library/gtest.
|
|
# Eventually, the make backend would do its own path canonicalization
|
|
# and config/version.mk would lift the $(srcdir)
|
|
RCINCLUDE = '$(DEPTH)/toolkit/library/xulrunner.rc'
|