2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:20 +00:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# Copyright 2013 Mozilla Foundation and Mozilla contributors
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2013-03-12 17:20:41 +00:00
|
|
|
if CONFIG['MOZ_B2G_BT']:
|
2013-03-19 18:47:00 +00:00
|
|
|
MODULE = 'dom'
|
2013-03-12 05:00:00 +00:00
|
|
|
XPIDL_MODULE = 'dom_bluetooth'
|
2013-03-12 17:20:41 +00:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIDOMBluetoothAdapter.idl',
|
2013-05-16 16:53:27 +00:00
|
|
|
'nsIDOMBluetoothDevice.idl',
|
2013-05-16 22:37:18 +00:00
|
|
|
'nsIDOMBluetoothDeviceEvent.idl',
|
|
|
|
'nsIDOMBluetoothManager.idl',
|
2013-03-12 17:20:41 +00:00
|
|
|
]
|
|
|
|
|
2013-04-23 21:54:15 +00:00
|
|
|
CPP_SOURCES += [
|
|
|
|
'BluetoothService.cpp',
|
|
|
|
'BluetoothManager.cpp',
|
|
|
|
'BluetoothAdapter.cpp',
|
|
|
|
'BluetoothDevice.cpp',
|
|
|
|
'BluetoothReplyRunnable.cpp',
|
|
|
|
'BluetoothPropertyContainer.cpp',
|
|
|
|
'BluetoothUtils.cpp',
|
|
|
|
'BluetoothChild.cpp',
|
|
|
|
'BluetoothParent.cpp',
|
|
|
|
'BluetoothServiceChildProcess.cpp',
|
|
|
|
'BluetoothUnixSocketConnector.cpp',
|
2013-06-08 15:24:29 +00:00
|
|
|
'BluetoothA2dpManager.cpp',
|
2013-04-23 21:54:15 +00:00
|
|
|
'BluetoothHfpManager.cpp',
|
|
|
|
'BluetoothOppManager.cpp',
|
|
|
|
'ObexBase.cpp',
|
|
|
|
'BluetoothUuid.cpp',
|
|
|
|
'BluetoothSocket.cpp',
|
2013-07-29 09:32:35 +00:00
|
|
|
'MediaMetaData.cpp',
|
|
|
|
'MediaPlayStatus.cpp'
|
2013-04-23 21:54:15 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_B2G_RIL']:
|
|
|
|
CPP_SOURCES += [
|
|
|
|
'BluetoothTelephonyListener.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
|
|
CPP_SOURCES += [
|
|
|
|
'BluetoothDBusService.cpp',
|
|
|
|
'BluetoothGonkService.cpp',
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
if CONFIG['MOZ_ENABLE_DBUS']:
|
|
|
|
CPP_SOURCES += [
|
|
|
|
'BluetoothDBusService.cpp',
|
|
|
|
]
|
|
|
|
|
2013-04-16 19:24:43 +00:00
|
|
|
EXPORTS.mozilla.dom.bluetooth.ipc += [
|
2013-06-26 18:51:06 +00:00
|
|
|
'ipc/BluetoothMessageUtils.h',
|
2013-04-16 19:24:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
EXPORTS.mozilla.dom.bluetooth += [
|
|
|
|
'BluetoothCommon.h',
|
|
|
|
]
|
|
|
|
|
2013-07-01 13:56:28 +00:00
|
|
|
IPDL_SOURCES += [
|
|
|
|
'ipc/BluetoothTypes.ipdlh',
|
|
|
|
'ipc/PBluetooth.ipdl',
|
|
|
|
'ipc/PBluetoothRequest.ipdl',
|
|
|
|
]
|