mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
61 lines
1.2 KiB
Makefile
61 lines
1.2 KiB
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 = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = update
|
|
|
|
XPIDLSRCS = nsIUpdateTimerManager.idl
|
|
|
|
EXTRA_COMPONENTS = \
|
|
nsUpdateTimerManager.js \
|
|
nsUpdateTimerManager.manifest \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_UPDATER
|
|
ifneq (android,$(MOZ_WIDGET_TOOLKIT))
|
|
DIRS += common
|
|
DIRS += updater
|
|
endif
|
|
|
|
XPIDLSRCS += nsIUpdateService.idl
|
|
|
|
EXTRA_PP_COMPONENTS += \
|
|
nsUpdateService.js \
|
|
nsUpdateServiceStub.js \
|
|
$(NULL)
|
|
|
|
EXTRA_COMPONENTS += \
|
|
nsUpdateService.manifest \
|
|
$(NULL)
|
|
|
|
else
|
|
|
|
# If only the maintenance service is installed and not
|
|
# the updater, then the maintenance service may still be
|
|
# used for other things. We need to build update/common
|
|
# which the maintenance service uses.
|
|
ifdef MOZ_MAINTENANCE_SERVICE
|
|
ifneq (android,$(MOZ_WIDGET_TOOLKIT))
|
|
DIRS += common
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
TEST_DIRS += test_timermanager
|
|
# Update tests require the updater binary
|
|
ifdef MOZ_UPDATER
|
|
TEST_DIRS += test
|
|
ifdef MOZ_MAINTENANCE_SERVICE
|
|
TEST_DIRS += test_svc
|
|
endif
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|