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