mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d3b737e5a4
--HG-- rename : view/src/Makefile.in => view/Makefile.in rename : view/src/nsView.cpp => view/nsView.cpp rename : view/public/nsView.h => view/nsView.h rename : view/src/nsViewManager.cpp => view/nsViewManager.cpp rename : view/public/nsViewManager.h => view/nsViewManager.h
100 lines
2.4 KiB
Python
100 lines
2.4 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/.
|
|
|
|
EXPORTS += [
|
|
'ContentHelper.h',
|
|
'GfxDriverInfo.h',
|
|
'GfxInfoBase.h',
|
|
'GfxInfoCollector.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'ContentHelper.cpp',
|
|
'GfxDriverInfo.cpp',
|
|
'GfxInfoBase.cpp',
|
|
'GfxInfoCollector.cpp',
|
|
'GfxInfoWebGL.cpp',
|
|
'InputData.cpp',
|
|
'nsBaseAppShell.cpp',
|
|
'nsBaseDragService.cpp',
|
|
'nsBaseScreen.cpp',
|
|
'nsClipboardHelper.cpp',
|
|
'nsClipboardProxy.cpp',
|
|
'nsColorPickerProxy.cpp',
|
|
'nsContentProcessWidgetFactory.cpp',
|
|
'nsFilePickerProxy.cpp',
|
|
'nsHTMLFormatConverter.cpp',
|
|
'nsIdleService.cpp',
|
|
'nsIWidgetListener.cpp',
|
|
'nsPrimitiveHelpers.cpp',
|
|
'nsPrintOptionsImpl.cpp',
|
|
'nsPrintSession.cpp',
|
|
'nsPrintSettingsImpl.cpp',
|
|
'nsScreenManagerProxy.cpp',
|
|
'nsTransferable.cpp',
|
|
'nsXPLookAndFeel.cpp',
|
|
'PuppetWidget.cpp',
|
|
'ScreenProxy.cpp',
|
|
'WidgetUtils.cpp',
|
|
]
|
|
|
|
# nsBaseWidget.cpp needs to be built separately because of name clashes in the OS X headers
|
|
SOURCES += [
|
|
'nsBaseWidget.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_X11']:
|
|
UNIFIED_SOURCES += [
|
|
'GfxInfoX11.cpp'
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('cocoa', 'windows'):
|
|
UNIFIED_SOURCES += [
|
|
'nsBaseClipboard.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('qt', 'gtk2', 'gtk3', 'cocoa', 'windows',
|
|
'android', 'gonk'):
|
|
UNIFIED_SOURCES += [
|
|
'nsBaseFilePicker.cpp',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('qt', 'gtk2', 'gtk3', 'windows', 'cocoa'):
|
|
UNIFIED_SOURCES += [
|
|
'nsNativeTheme.cpp',
|
|
]
|
|
|
|
if not CONFIG['MOZ_B2G']:
|
|
DEFINES['MOZ_CROSS_PROCESS_IME'] = True
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../shared',
|
|
'/layout/base',
|
|
'/layout/forms',
|
|
'/layout/generic',
|
|
'/layout/xul',
|
|
'/view',
|
|
]
|
|
|
|
widget_dir = CONFIG['MOZ_WIDGET_TOOLKIT']
|
|
if widget_dir in ('gtk3', 'gtk2'):
|
|
# gtk3 shares includes with gtk2
|
|
widget_dir = 'gtk'
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../%s' % widget_dir,
|
|
]
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
if CONFIG['MOZ_ENABLE_D3D10_LAYER']:
|
|
DEFINES['MOZ_ENABLE_D3D10_LAYER'] = True
|