mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9631320c07
--HG-- rename : dom/system/b2g/AudioManager.cpp => dom/system/gonk/AudioManager.cpp rename : dom/system/b2g/AudioManager.h => dom/system/gonk/AudioManager.h rename : dom/system/b2g/GonkGPSGeolocationProvider.cpp => dom/system/gonk/GonkGPSGeolocationProvider.cpp rename : dom/system/b2g/GonkGPSGeolocationProvider.h => dom/system/gonk/GonkGPSGeolocationProvider.h rename : dom/system/b2g/Makefile.in => dom/system/gonk/Makefile.in rename : dom/system/b2g/RadioInterfaceLayer.js => dom/system/gonk/RadioInterfaceLayer.js rename : dom/system/b2g/RadioInterfaceLayer.manifest => dom/system/gonk/RadioInterfaceLayer.manifest rename : dom/system/b2g/SystemWorkerManager.cpp => dom/system/gonk/SystemWorkerManager.cpp rename : dom/system/b2g/SystemWorkerManager.h => dom/system/gonk/SystemWorkerManager.h rename : dom/system/b2g/net_worker.js => dom/system/gonk/net_worker.js rename : dom/system/b2g/nsIAudioManager.idl => dom/system/gonk/nsIAudioManager.idl rename : dom/system/b2g/nsIRadioInterfaceLayer.idl => dom/system/gonk/nsIRadioInterfaceLayer.idl rename : dom/system/b2g/nsIWorkerHolder.idl => dom/system/gonk/nsIWorkerHolder.idl rename : dom/system/b2g/nsRadioInterfaceLayer.h => dom/system/gonk/nsRadioInterfaceLayer.h rename : dom/system/b2g/ril_consts.js => dom/system/gonk/ril_consts.js rename : dom/system/b2g/ril_worker.js => dom/system/gonk/ril_worker.js rename : dom/system/b2g/systemlibs.js => dom/system/gonk/systemlibs.js rename : dom/system/b2g/tests/header_helpers.js => dom/system/gonk/tests/header_helpers.js rename : dom/system/b2g/tests/test_ril_worker_buf.js => dom/system/gonk/tests/test_ril_worker_buf.js rename : dom/system/b2g/tests/test_ril_worker_sms.js => dom/system/gonk/tests/test_ril_worker_sms.js rename : dom/system/b2g/tests/xpcshell.ini => dom/system/gonk/tests/xpcshell.ini
64 lines
1.3 KiB
Makefile
64 lines
1.3 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 = ../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
relativesrcdir = dom/system/gonk
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = dom
|
|
LIBRARY_NAME = domsystemgonk_s
|
|
XPIDL_MODULE = dom_system_gonk
|
|
LIBXUL_LIBRARY = 1
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
include $(topsrcdir)/dom/dom-config.mk
|
|
|
|
CPPSRCS = \
|
|
SystemWorkerManager.cpp \
|
|
$(NULL)
|
|
|
|
ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
|
|
CPPSRCS += \
|
|
AudioManager.cpp \
|
|
GonkGPSGeolocationProvider.cpp \
|
|
$(NULL)
|
|
endif
|
|
|
|
XPIDLSRCS = \
|
|
nsIAudioManager.idl \
|
|
nsIRadioInterfaceLayer.idl \
|
|
nsIWorkerHolder.idl \
|
|
$(NULL)
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I$(topsrcdir)/dom/base \
|
|
-I$(topsrcdir)/dom/src/geolocation \
|
|
-I$(topsrcdir)/dom/telephony \
|
|
-I$(topsrcdir)/dom/wifi \
|
|
-I$(topsrcdir)/content/events/src \
|
|
$(NULL)
|
|
|
|
EXTRA_COMPONENTS = \
|
|
RadioInterfaceLayer.manifest \
|
|
RadioInterfaceLayer.js \
|
|
$(NULL)
|
|
|
|
EXTRA_JS_MODULES = \
|
|
net_worker.js \
|
|
ril_consts.js \
|
|
ril_worker.js \
|
|
systemlibs.js \
|
|
$(NULL)
|
|
|
|
ifdef ENABLE_TESTS
|
|
XPCSHELL_TESTS = tests
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|