mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
40 lines
753 B
Makefile
40 lines
753 B
Makefile
#
|
|
# 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/.
|
|
|
|
DEPTH = ../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
DIRS += \
|
|
dom-level0 \
|
|
dom-level1-core \
|
|
dom-level2-core \
|
|
dom-level2-html \
|
|
ajax \
|
|
bugs \
|
|
chrome \
|
|
devicestorage \
|
|
general \
|
|
whatwg \
|
|
geolocation \
|
|
localstorage \
|
|
orientation \
|
|
sessionstorage \
|
|
storageevent \
|
|
pointerlock \
|
|
webapps \
|
|
$(NULL)
|
|
|
|
#needs IPC support, also tests do not run successfully in Firefox for now
|
|
#ifneq (mobile,$(MOZ_BUILD_APP))
|
|
#DIRS += notification
|
|
#endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|