mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
58 lines
1.5 KiB
Python
58 lines
1.5 KiB
Python
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# 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/.
|
|
|
|
DIRS += ['interfaces']
|
|
|
|
MOCHITEST_MANIFESTS += ['tests/mochitest/mochitest.ini']
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
'DOMMMIError.h',
|
|
'ipc/MobileConnectionIPCSerializer.h',
|
|
'MobileCellInfo.h',
|
|
'MobileConnection.h',
|
|
'MobileConnectionArray.h',
|
|
'MobileConnectionCallback.h',
|
|
'MobileConnectionInfo.h',
|
|
'MobileNetworkInfo.h',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom.mobileconnection += [
|
|
'ipc/MobileConnectionChild.h',
|
|
'ipc/MobileConnectionIPCService.h',
|
|
'ipc/MobileConnectionParent.h',
|
|
]
|
|
|
|
SOURCES += [
|
|
'DOMMMIError.cpp',
|
|
'ipc/MobileConnectionChild.cpp',
|
|
'ipc/MobileConnectionIPCService.cpp',
|
|
'ipc/MobileConnectionParent.cpp',
|
|
'MobileCellInfo.cpp',
|
|
'MobileConnection.cpp',
|
|
'MobileConnectionArray.cpp',
|
|
'MobileConnectionCallback.cpp',
|
|
'MobileConnectionInfo.cpp',
|
|
'MobileNetworkInfo.cpp',
|
|
]
|
|
|
|
IPDL_SOURCES += [
|
|
'ipc/PMobileConnection.ipdl',
|
|
'ipc/PMobileConnectionRequest.ipdl',
|
|
'ipc/PMobileConnectionTypes.ipdlh',
|
|
]
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and CONFIG['MOZ_B2G_RIL']:
|
|
EXTRA_COMPONENTS += [
|
|
'gonk/MobileConnectionGonkService.js',
|
|
'gonk/MobileConnectionGonkService.manifest',
|
|
]
|
|
|
|
FAIL_ON_WARNINGS = True
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
FINAL_LIBRARY = 'xul'
|