mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
809b0bd4a8
--HG-- rename : widget/shared/NativeKeyToDOMCodeName.h => widget/NativeKeyToDOMCodeName.h rename : widget/shared/NativeKeyToDOMKeyName.h => widget/NativeKeyToDOMKeyName.h rename : widget/shared/VsyncDispatcher.cpp => widget/VsyncDispatcher.cpp rename : widget/shared/VsyncDispatcher.h => widget/VsyncDispatcher.h rename : widget/shared/WidgetEventImpl.cpp => widget/WidgetEventImpl.cpp rename : widget/shared/nsShmImage.cpp => widget/nsShmImage.cpp rename : widget/shared/nsShmImage.h => widget/nsShmImage.h rename : widget/shared/x11/keysym2ucs.c => widget/x11/keysym2ucs.c rename : widget/shared/x11/keysym2ucs.h => widget/x11/keysym2ucs.h rename : widget/shared/x11/moz.build => widget/x11/moz.build
53 lines
1.2 KiB
Python
53 lines
1.2 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/.
|
|
|
|
SOURCES += [
|
|
'APZController.cpp',
|
|
'FrameworkView.cpp',
|
|
'MetroApp.cpp',
|
|
'MetroAppShell.cpp',
|
|
'MetroContracts.cpp',
|
|
'MetroInput.cpp',
|
|
'MetroUtils.cpp',
|
|
'MetroWidget.cpp',
|
|
'nsMetroFilePicker.cpp',
|
|
'nsWinMetroUtils.cpp',
|
|
'ToastNotificationHandler.cpp',
|
|
'UIAAccessibilityBridge.cpp',
|
|
'UIABridge.cpp',
|
|
'WakeLockListener.cpp',
|
|
]
|
|
|
|
EXTRA_COMPONENTS += [
|
|
'MetroUIUtils.js',
|
|
'MetroUIUtils.manifest',
|
|
]
|
|
|
|
EXPORTS.mozilla.widget += [
|
|
'MetroD3DCheckHelper.h',
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../',
|
|
'/layout/generic',
|
|
'/layout/xul',
|
|
'/toolkit/xre',
|
|
'/widget',
|
|
'/xpcom/base',
|
|
]
|
|
|
|
DEFINES['MOZ_UNICODE'] = True
|
|
|
|
for var in ('MOZ_ENABLE_D3D9_LAYER', 'MOZ_ENABLE_D3D10_LAYER'):
|
|
if CONFIG[var]:
|
|
DEFINES[var] = True
|
|
|
|
CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS']
|