mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d3d322d222
From 6681eaa8bb47ddb4756fd71738771c4c437101c0 Mon Sep 17 00:00:00 2001 --- content/media/webspeech/recognition/Makefile.in | 1 - content/media/webspeech/recognition/moz.build | 5 +- content/media/webspeech/synth/Makefile.in | 1 - content/media/webspeech/synth/pico/Makefile.in | 3 -- dom/alarm/Makefile.in | 2 - dom/apps/src/Makefile.in | 1 - dom/base/Makefile.in | 2 - dom/base/moz.build | 26 ++++++++++- dom/battery/Makefile.in | 1 - dom/bindings/Makefile.in | 3 -- dom/bindings/moz.build | 17 ++++++- dom/bindings/test/Makefile.in | 5 +- dom/bluetooth/Makefile.in | 2 - dom/bluetooth/moz.build | 7 ++- dom/browser-element/Makefile.in | 3 -- dom/browser-element/moz.build | 6 ++- dom/camera/Makefile.in | 1 - dom/camera/moz.build | 5 +- dom/devicestorage/Makefile.in | 1 - dom/dom-config.mk | 61 ------------------------- dom/encoding/Makefile.in | 1 - dom/fmradio/Makefile.in | 2 - dom/fmradio/ipc/Makefile.in | 1 - dom/fmradio/ipc/moz.build | 5 +- dom/fmradio/moz.build | 5 +- dom/icc/src/Makefile.in | 4 -- dom/media/Makefile.in | 3 -- dom/media/moz.build | 6 ++- dom/mobilemessage/src/Makefile.in | 1 - dom/mobilemessage/src/moz.build | 5 +- dom/network/src/Makefile.in | 2 - dom/plugins/base/Makefile.in | 1 - dom/plugins/base/moz.build | 8 +++- dom/power/Makefile.in | 1 - dom/quota/Makefile.in | 1 - dom/system/gonk/Makefile.in | 2 - dom/telephony/Makefile.in | 1 - dom/time/Makefile.in | 1 - dom/wifi/Makefile.in | 5 -- 39 files changed, 85 insertions(+), 123 deletions(-) delete mode 100644 dom/dom-config.mk delete mode 100644 dom/wifi/Makefile.in
154 lines
3.5 KiB
Python
154 lines
3.5 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/.
|
|
|
|
TEST_DIRS += ['test']
|
|
|
|
XPIDL_SOURCES += [
|
|
'nsIDOMDOMCursor.idl',
|
|
'nsIDOMDOMRequest.idl',
|
|
'nsIEntropyCollector.idl',
|
|
'nsIScriptChannel.idl',
|
|
'nsISiteSpecificUserAgent.idl',
|
|
]
|
|
|
|
MODULE = 'dom'
|
|
|
|
EXPORTS += [
|
|
'Crypto.h',
|
|
'nsContentPermissionHelper.h',
|
|
'nsDOMCID.h',
|
|
'nsDOMClassInfoClasses.h',
|
|
'nsDOMClassInfoID.h',
|
|
'nsDOMJSUtils.h',
|
|
'nsDOMNavigationTiming.h',
|
|
'nsDOMString.h',
|
|
'nsFocusManager.h',
|
|
'nsIDOMClassInfo.h',
|
|
'nsIDOMScriptObjectFactory.h',
|
|
'nsIGlobalObject.h',
|
|
'nsIJSEventListener.h',
|
|
'nsIJSNativeInitializer.h',
|
|
'nsIScriptContext.h',
|
|
'nsIScriptExternalNameSet.h',
|
|
'nsIScriptGlobalObject.h',
|
|
'nsIScriptGlobalObjectOwner.h',
|
|
'nsIScriptNameSpaceManager.h',
|
|
'nsIScriptObjectPrincipal.h',
|
|
'nsIScriptTimeoutHandler.h',
|
|
'nsJSEnvironment.h',
|
|
'nsJSUtils.h',
|
|
'nsPerformance.h',
|
|
'nsPIDOMWindow.h',
|
|
'nsPIWindowRoot.h',
|
|
'nsStructuredCloneContainer.h',
|
|
'nsWindowMemoryReporter.h',
|
|
'nsWrapperCache.h',
|
|
'nsWrapperCacheInlines.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
'BarProps.h',
|
|
'DOMCursor.h',
|
|
'DOMError.h',
|
|
'DOMException.h',
|
|
'DOMRequest.h',
|
|
'MessageChannel.h',
|
|
'MessagePort.h',
|
|
'MessagePortList.h',
|
|
'ScreenOrientation.h',
|
|
'StructuredCloneTags.h',
|
|
'URL.h',
|
|
]
|
|
|
|
CPP_SOURCES += [
|
|
'BarProps.cpp',
|
|
'CompositionStringSynthesizer.cpp',
|
|
'Crypto.cpp',
|
|
'DOMCursor.cpp',
|
|
'DOMError.cpp',
|
|
'DOMException.cpp',
|
|
'DOMRequest.cpp',
|
|
'MessageChannel.cpp',
|
|
'MessagePort.cpp',
|
|
'MessagePortList.cpp',
|
|
'Navigator.cpp',
|
|
'nsContentPermissionHelper.cpp',
|
|
'nsDOMClassInfo.cpp',
|
|
'nsDOMNavigationTiming.cpp',
|
|
'nsDOMScriptObjectFactory.cpp',
|
|
'nsDOMWindowList.cpp',
|
|
'nsDOMWindowUtils.cpp',
|
|
'nsFocusManager.cpp',
|
|
'nsGlobalWindow.cpp',
|
|
'nsGlobalWindowCommands.cpp',
|
|
'nsHistory.cpp',
|
|
'nsJSEnvironment.cpp',
|
|
'nsJSTimeoutHandler.cpp',
|
|
'nsJSUtils.cpp',
|
|
'nsLocation.cpp',
|
|
'nsMimeTypeArray.cpp',
|
|
'nsPerformance.cpp',
|
|
'nsPluginArray.cpp',
|
|
'nsQueryContentEventResult.cpp',
|
|
'nsScreen.cpp',
|
|
'nsScriptNameSpaceManager.cpp',
|
|
'nsStructuredCloneContainer.cpp',
|
|
'nsWindowMemoryReporter.cpp',
|
|
'nsWindowRoot.cpp',
|
|
'nsWrapperCache.cpp',
|
|
'URL.cpp',
|
|
'WindowNamedPropertiesHandler.cpp',
|
|
]
|
|
|
|
EXTRA_COMPONENTS += [
|
|
'ConsoleAPI.js',
|
|
'ConsoleAPI.manifest',
|
|
'SiteSpecificUserAgent.js',
|
|
'SiteSpecificUserAgent.manifest',
|
|
]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'ConsoleAPIStorage.jsm',
|
|
'DOMRequestHelper.jsm',
|
|
'IndexedDBHelper.jsm',
|
|
'ObjectWrapper.jsm',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
LIBXUL_LIBRARY = True
|
|
|
|
MSVC_ENABLE_PGO = True
|
|
|
|
LIBRARY_NAME = 'jsdombase_s'
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../battery',
|
|
'../bluetooth',
|
|
'../icc/src',
|
|
'../media',
|
|
'../network/src',
|
|
'../src/geolocation',
|
|
'../src/storage',
|
|
'../time',
|
|
'/content/base/src',
|
|
'/content/events/src',
|
|
'/content/html/document/src',
|
|
'/content/xbl/src',
|
|
'/content/xul/document/src',
|
|
'/layout/generic',
|
|
'/layout/style',
|
|
'/layout/xul/base/src',
|
|
]
|
|
|
|
if CONFIG['MOZ_B2G_RIL']:
|
|
LOCAL_INCLUDES += [
|
|
'../fmradio',
|
|
'../system/gonk',
|
|
]
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|