mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
56 lines
1.2 KiB
Makefile
56 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 = ../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = dom
|
|
LIBRARY_NAME = dombluetooth_s
|
|
XPIDL_MODULE = dom_bluetooth
|
|
LIBXUL_LIBRARY = 1
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
|
|
VPATH += $(srcdir)/linux
|
|
LOCAL_INCLUDES += $(MOZ_DBUS_CFLAGS)
|
|
endif
|
|
|
|
ifdef MOZ_ENABLE_DBUS
|
|
VPATH += $(srcdir)/linux
|
|
LOCAL_INCLUDES += $(MOZ_DBUS_CFLAGS)
|
|
endif
|
|
|
|
include $(topsrcdir)/dom/dom-config.mk
|
|
|
|
CPPSRCS = \
|
|
BluetoothManager.cpp \
|
|
BluetoothAdapter.cpp \
|
|
BluetoothFirmware.cpp \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_ENABLE_DBUS
|
|
CPPSRCS += BluetoothDBusUtils.cpp
|
|
endif
|
|
|
|
ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
|
|
CPPSRCS += BluetoothDBusUtils.cpp
|
|
endif
|
|
|
|
XPIDLSRCS = \
|
|
nsIDOMNavigatorBluetooth.idl \
|
|
nsIDOMBluetoothManager.idl \
|
|
nsIDOMBluetoothAdapter.idl \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
ifdef MOZ_ENABLE_DBUS
|
|
CFLAGS += $(MOZ_DBUS_GLIB_CFLAGS)
|
|
CXXFLAGS += $(MOZ_DBUS_GLIB_CFLAGS) -DHAVE_PTHREADS
|
|
endif
|