2012-05-21 15:12:37 +04:00
|
|
|
# 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/.
|
|
|
|
|
2012-03-31 08:42:20 +04:00
|
|
|
webidl_base = $(topsrcdir)/dom/webidl
|
|
|
|
|
2012-08-24 08:08:09 +04:00
|
|
|
generated_webidl_files = \
|
|
|
|
CSS2Properties.webidl \
|
|
|
|
$(NULL)
|
|
|
|
|
2012-03-31 08:42:20 +04:00
|
|
|
webidl_files = \
|
2012-09-22 02:42:14 +04:00
|
|
|
AudioBuffer.webidl \
|
2012-09-19 03:07:33 +04:00
|
|
|
AudioBufferSourceNode.webidl \
|
2012-09-01 00:59:37 +04:00
|
|
|
AudioContext.webidl \
|
2012-09-19 03:07:33 +04:00
|
|
|
AudioDestinationNode.webidl \
|
|
|
|
AudioNode.webidl \
|
|
|
|
AudioSourceNode.webidl \
|
2012-09-10 17:57:15 +04:00
|
|
|
Blob.webidl \
|
2012-06-13 19:14:15 +04:00
|
|
|
CanvasRenderingContext2D.webidl \
|
2012-09-06 00:49:53 +04:00
|
|
|
ClientRectList.webidl \
|
2012-08-24 08:08:09 +04:00
|
|
|
CSSStyleDeclaration.webidl \
|
2012-09-06 00:49:53 +04:00
|
|
|
DOMTokenList.webidl \
|
|
|
|
DOMSettableTokenList.webidl \
|
2012-03-31 08:42:20 +04:00
|
|
|
Function.webidl \
|
2012-10-10 23:53:02 +04:00
|
|
|
EventHandler.webidl \
|
2012-03-31 08:42:20 +04:00
|
|
|
EventListener.webidl \
|
|
|
|
EventTarget.webidl \
|
2012-09-06 00:49:53 +04:00
|
|
|
FileList.webidl \
|
2012-09-21 06:47:47 +04:00
|
|
|
FileReaderSync.webidl \
|
2012-09-06 00:49:53 +04:00
|
|
|
HTMLCollection.webidl \
|
|
|
|
HTMLOptionsCollection.webidl \
|
|
|
|
HTMLPropertiesCollection.webidl \
|
|
|
|
NodeList.webidl \
|
|
|
|
PaintRequestList.webidl \
|
2012-07-17 05:42:18 +04:00
|
|
|
Performance.webidl \
|
|
|
|
PerformanceNavigation.webidl \
|
|
|
|
PerformanceTiming.webidl \
|
2012-09-06 00:49:53 +04:00
|
|
|
SVGLengthList.webidl \
|
|
|
|
SVGNumberList.webidl \
|
|
|
|
SVGPathSegList.webidl \
|
|
|
|
SVGPointList.webidl \
|
|
|
|
SVGTransformList.webidl \
|
2012-09-28 14:19:18 +04:00
|
|
|
TextDecoder.webidl \
|
|
|
|
TextEncoder.webidl \
|
2012-09-10 17:48:14 +04:00
|
|
|
WebSocket.webidl \
|
2012-03-31 08:42:20 +04:00
|
|
|
XMLHttpRequest.webidl \
|
|
|
|
XMLHttpRequestEventTarget.webidl \
|
|
|
|
XMLHttpRequestUpload.webidl \
|
2012-07-12 09:30:17 +04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifdef MOZ_WEBGL
|
|
|
|
webidl_files += \
|
2012-05-31 22:16:48 +04:00
|
|
|
WebGLRenderingContext.webidl \
|
2012-03-31 08:42:20 +04:00
|
|
|
$(NULL)
|
2012-07-12 09:30:17 +04:00
|
|
|
endif
|
2012-05-23 20:44:48 +04:00
|
|
|
|
|
|
|
ifdef ENABLE_TESTS
|
2012-06-12 18:22:05 +04:00
|
|
|
test_webidl_files := \
|
|
|
|
TestCodeGen.webidl \
|
|
|
|
TestDictionary.webidl \
|
2012-09-06 18:23:51 +04:00
|
|
|
TestTypedef.webidl \
|
2012-06-12 18:22:05 +04:00
|
|
|
$(NULL)
|
2012-05-23 20:44:48 +04:00
|
|
|
else
|
|
|
|
test_webidl_files := $(NULL)
|
|
|
|
endif
|
|
|
|
|