2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +04:00
|
|
|
# vim: set filetype=python:
|
2013-11-18 10:29:45 +04: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/.
|
2013-02-26 00:47:20 +04:00
|
|
|
|
2013-03-12 21:20:41 +04:00
|
|
|
if CONFIG['MOZ_B2G_BT']:
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'BluetoothAdapter.cpp',
|
|
|
|
'BluetoothDevice.cpp',
|
2013-08-12 13:32:25 +04:00
|
|
|
'BluetoothHidManager.cpp',
|
2013-10-24 03:00:23 +04:00
|
|
|
'BluetoothManager.cpp',
|
|
|
|
'BluetoothProfileController.cpp',
|
|
|
|
'BluetoothPropertyContainer.cpp',
|
|
|
|
'BluetoothReplyRunnable.cpp',
|
|
|
|
'BluetoothService.cpp',
|
|
|
|
'BluetoothUuid.cpp',
|
|
|
|
'ipc/BluetoothChild.cpp',
|
|
|
|
'ipc/BluetoothParent.cpp',
|
2013-10-24 03:05:43 +04:00
|
|
|
'ipc/BluetoothServiceChildProcess.cpp',
|
|
|
|
'ObexBase.cpp'
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_B2G_RIL']:
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-09-09 15:54:56 +04:00
|
|
|
'BluetoothRilListener.cpp',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
|
|
|
|
2013-10-23 10:12:24 +04:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
|
|
if CONFIG['MOZ_B2G_BT_BLUEZ']:
|
2014-07-24 19:55:33 +04:00
|
|
|
CXXFLAGS += CONFIG['MOZ_DBUS_CFLAGS']
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-11-20 12:19:08 +04:00
|
|
|
'bluez/BluetoothA2dpManager.cpp',
|
2014-02-25 06:38:51 +04:00
|
|
|
'bluez/BluetoothDBusService.cpp',
|
2013-11-18 10:29:45 +04:00
|
|
|
'bluez/BluetoothHfpManager.cpp',
|
2013-11-29 10:18:04 +04:00
|
|
|
'bluez/BluetoothOppManager.cpp',
|
|
|
|
'bluez/BluetoothSocket.cpp',
|
|
|
|
'bluez/BluetoothUnixSocketConnector.cpp',
|
2013-12-16 15:00:54 +04:00
|
|
|
'bluez/BluetoothUtils.cpp',
|
2013-10-23 10:12:24 +04:00
|
|
|
]
|
2013-11-18 10:29:45 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'bluez',
|
2013-10-23 10:12:24 +04:00
|
|
|
]
|
2013-11-27 17:55:07 +04:00
|
|
|
DEFINES['MOZ_B2G_BT_BLUEZ'] = True
|
2013-11-18 10:29:45 +04:00
|
|
|
elif CONFIG['MOZ_B2G_BT_BLUEDROID']:
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-11-20 12:19:08 +04:00
|
|
|
'bluedroid/BluetoothA2dpManager.cpp',
|
2014-06-27 11:45:26 +04:00
|
|
|
'bluedroid/BluetoothInterface.cpp',
|
2013-11-29 10:18:04 +04:00
|
|
|
'bluedroid/BluetoothOppManager.cpp',
|
2014-02-25 06:38:51 +04:00
|
|
|
'bluedroid/BluetoothServiceBluedroid.cpp',
|
2013-11-29 10:18:04 +04:00
|
|
|
'bluedroid/BluetoothSocket.cpp',
|
2013-12-16 15:00:54 +04:00
|
|
|
'bluedroid/BluetoothUtils.cpp',
|
2013-11-18 10:29:45 +04:00
|
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'bluedroid',
|
2013-04-24 01:54:15 +04:00
|
|
|
]
|
2014-02-25 07:37:37 +04:00
|
|
|
|
|
|
|
if CONFIG['MOZ_B2G_RIL']:
|
|
|
|
SOURCES += [
|
|
|
|
'bluedroid/hfp/BluetoothHfpManager.cpp',
|
|
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'bluedroid/hfp',
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
SOURCES += [
|
|
|
|
'bluedroid/hfp-fallback/BluetoothHfpManager.cpp',
|
|
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'bluedroid/hfp-fallback',
|
|
|
|
]
|
|
|
|
|
2013-11-27 17:55:07 +04:00
|
|
|
DEFINES['MOZ_B2G_BT_BLUEDROID'] = True
|
2013-11-18 10:29:45 +04:00
|
|
|
elif CONFIG['MOZ_ENABLE_DBUS']:
|
2014-07-24 19:55:33 +04:00
|
|
|
CFLAGS += CONFIG['MOZ_DBUS_CFLAGS']
|
|
|
|
CFLAGS += CONFIG['MOZ_DBUS_GLIB_CFLAGS']
|
|
|
|
CXXFLAGS += CONFIG['MOZ_DBUS_CFLAGS']
|
|
|
|
CXXFLAGS += CONFIG['MOZ_DBUS_GLIB_CFLAGS']
|
2013-11-18 10:29:45 +04:00
|
|
|
SOURCES += [
|
2014-02-25 06:38:51 +04:00
|
|
|
'bluez/BluetoothDBusService.cpp',
|
2013-11-18 10:29:45 +04:00
|
|
|
'bluez/BluetoothHfpManager.cpp',
|
|
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'bluez',
|
|
|
|
]
|
2013-11-27 17:55:07 +04:00
|
|
|
DEFINES['MOZ_BLUETOOTH_DBUS'] = True
|
2014-02-23 06:42:12 +04:00
|
|
|
DEFINES['HAVE_PTHREADS'] = True
|
2013-04-24 01:54:15 +04:00
|
|
|
|
2014-07-23 03:37:51 +04:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2013-11-19 06:47:14 +04:00
|
|
|
|
2013-11-21 23:57:06 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'ipc',
|
|
|
|
]
|
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.mozilla.dom.bluetooth.ipc += [
|
2013-06-26 22:51:06 +04:00
|
|
|
'ipc/BluetoothMessageUtils.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom.bluetooth += [
|
2014-05-23 10:00:10 +04:00
|
|
|
'BluetoothAdapter.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
'BluetoothCommon.h',
|
2014-05-23 10:00:10 +04:00
|
|
|
'BluetoothDevice.h',
|
|
|
|
'BluetoothManager.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
|
|
|
|
2013-07-01 17:56:28 +04:00
|
|
|
IPDL_SOURCES += [
|
|
|
|
'ipc/BluetoothTypes.ipdlh',
|
|
|
|
'ipc/PBluetooth.ipdl',
|
|
|
|
'ipc/PBluetoothRequest.ipdl',
|
|
|
|
]
|
2013-08-22 10:55:59 +04:00
|
|
|
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
|
2013-10-24 01:20:55 +04:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'../base',
|
|
|
|
'../network/src',
|
|
|
|
'../system/gonk',
|
|
|
|
]
|
2013-10-02 21:17:55 +04:00
|
|
|
|
2013-10-24 01:20:55 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|