gecko-dev/widget/windows/moz.build
Mike Hommey 5a5a1edd0e Bug 1656141 - Remove RESFILE. r=firefox-build-system-reviewers,rstewart
The resource file is always generated so being able to configure its name
is not useful. On the other hand, the way things are currently implemented,
the lack of RESFILE also makes RCFILE ignored, which we fix at the same
time.

And remove a spurious RESFILE in widget/windows/moz.build, where no binary
is produced, which means RESFILE had no meaning.

Differential Revision: https://phabricator.services.mozilla.com/D86154
2020-08-06 22:51:59 +00:00

182 lines
4.2 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/.
with Files("**"):
BUG_COMPONENT = ("Core", "Widget: Win32")
SCHEDULES.exclusive = ['windows']
with Files("*CompositorWidget*"):
BUG_COMPONENT = ("Core", "Graphics")
with Files("OSK*"):
BUG_COMPONENT = ("Core", "DOM: UI Events & Focus Handling")
TEST_DIRS += ['tests']
EXPORTS += [
'nsdefs.h',
'WindowHook.h',
'WinUtils.h',
]
EXPORTS.mozilla += [
'ShellHeaderOnlyUtils.h',
'UrlmonHeaderOnlyUtils.h',
'WindowsConsole.h',
'WinHeaderOnlyUtils.h',
]
EXPORTS.mozilla.widget += [
'AudioSession.h',
'CompositorWidgetChild.h',
'CompositorWidgetParent.h',
'InProcessWinCompositorWidget.h',
'WinCompositorWidget.h',
'WinCompositorWindowThread.h',
'WinContentSystemParameters.h',
'WindowsEMF.h',
'WindowsSMTCProvider.h',
'WinMessages.h',
'WinModifierKeyState.h',
'WinNativeEventData.h',
]
UNIFIED_SOURCES += [
'AudioSession.cpp',
'CompositorWidgetChild.cpp',
'GfxInfo.cpp',
'IEnumFE.cpp',
'IMMHandler.cpp',
'InkCollector.cpp',
'JumpListItem.cpp',
'KeyboardLayout.cpp',
'LSPAnnotator.cpp',
'nsAppShell.cpp',
'nsClipboard.cpp',
'nsColorPicker.cpp',
'nsDataObj.cpp',
'nsDataObjCollection.cpp',
'nsDragService.cpp',
'nsLookAndFeel.cpp',
'nsNativeBasicThemeWin.cpp',
'nsNativeDragSource.cpp',
'nsNativeDragTarget.cpp',
'nsNativeThemeWin.cpp',
'nsSound.cpp',
'nsToolkit.cpp',
'nsUserIdleServiceWin.cpp',
'nsUXThemeData.cpp',
'nsWindow.cpp',
'nsWindowBase.cpp',
'nsWindowDbg.cpp',
'nsWindowGfx.cpp',
'nsWinGesture.cpp',
'ProcInfo.cpp',
'RemoteBackbuffer.cpp',
'ScreenHelperWin.cpp',
'TaskbarPreview.cpp',
'TaskbarPreviewButton.cpp',
'TaskbarTabPreview.cpp',
'TaskbarWindowPreview.cpp',
'WidgetTraceEvent.cpp',
'WinCompositorWindowThread.cpp',
'WindowHook.cpp',
'WindowsConsole.cpp',
'WinIMEHandler.cpp',
'WinPointerEvents.cpp',
'WinTaskbar.cpp',
'WinTextEventDispatcherListener.cpp',
'WinUtils.cpp',
]
# The following files cannot be built in unified mode because of name clashes.
SOURCES += [
'CompositorWidgetParent.cpp',
'InProcessWinCompositorWidget.cpp',
'JumpListBuilder.cpp',
'MediaKeysEventSourceFactory.cpp',
'nsBidiKeyboard.cpp',
'nsFilePicker.cpp',
'nsSharePicker.cpp',
'nsWidgetFactory.cpp',
'OSKInputPaneManager.cpp',
'WinCompositorWidget.cpp',
'WinContentSystemParameters.cpp',
'WindowsSMTCProvider.cpp',
'WindowsUIUtils.cpp',
'WinMouseScrollHandler.cpp',
]
# These files redefine the winsdk api version macro and we don't want it to leak to other files.
SOURCES += [
'DirectManipulationOwner.cpp',
]
# Needs INITGUID and we don't allow INITGUID in unified sources since bug 970429.
SOURCES += [
'InputDeviceUtils.cpp',
]
if CONFIG['NS_PRINTING']:
UNIFIED_SOURCES += [
'nsDeviceContextSpecWin.cpp',
'nsPrintDialogUtil.cpp',
'nsPrintDialogWin.cpp',
'nsPrinterWin.cpp',
'nsPrintSettingsServiceWin.cpp',
'nsPrintSettingsWin.cpp',
]
if CONFIG['MOZ_ENABLE_SKIA_PDF']:
UNIFIED_SOURCES += [
'WindowsEMF.cpp',
]
if CONFIG['NS_ENABLE_TSF']:
SOURCES += [
'TSFTextStore.cpp',
]
XPCOM_MANIFESTS += [
'components.conf',
]
include('/ipc/chromium/chromium-config.mozbuild')
FINAL_LIBRARY = 'xul'
if CONFIG['MOZ_ENABLE_SKIA_PDF']:
LOCAL_INCLUDES += CONFIG['SKIA_INCLUDES']
LOCAL_INCLUDES += [
'/layout/forms',
'/layout/generic',
'/layout/xul',
'/toolkit/xre',
'/widget',
'/widget/headless',
'/xpcom/base',
]
DEFINES['MOZ_UNICODE'] = True
for var in ('MOZ_ENABLE_D3D10_LAYER'):
if CONFIG[var]:
DEFINES[var] = True
CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS']
OS_LIBS += [
'rpcrt4',
'urlmon',
]
if CONFIG['CC_TYPE'] == 'clang-cl':
SOURCES += [
'ToastNotification.cpp',
'ToastNotificationHandler.cpp',
]