https://github.com/mozilla/gecko-dev
Raw File
Tip revision: a042c40b6e66bcf970114bd5b627baacf67fe071 authored by ffxbld on 20 February 2015, 01:41:56 UTC
Added FIREFOX_36_0_RELEASE FIREFOX_36_0_BUILD1 tag(s) for changeset 59eefd8af5d7. DONTBUILD CLOSED TREE a=release
Tip revision: a042c40
moz.build
# -*- 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/.

MOCHITEST_MANIFESTS += ['tests/mochitest/mochitest.ini']

EXPORTS.mozilla.dom += [
    'DOMMMIError.h',
    'MobileCellInfo.h',
    'MobileConnection.h',
    'MobileConnectionArray.h',
    'MobileConnectionInfo.h',
    'MobileNetworkInfo.h',
]

EXPORTS.mozilla.dom.mobileconnection += [
    'ipc/MobileConnectionChild.h',
    'ipc/MobileConnectionIPCSerializer.h',
    'ipc/MobileConnectionParent.h',
    'MobileCallForwardingOptions.h',
]

XPIDL_SOURCES += [
    'interfaces/nsICellInfo.idl',
    'interfaces/nsIMobileCallForwardingOptions.idl',
    'interfaces/nsIMobileCellInfo.idl',
    'interfaces/nsIMobileConnectionInfo.idl',
    'interfaces/nsIMobileConnectionService.idl',
    'interfaces/nsIMobileNetworkInfo.idl',
    'interfaces/nsINeighboringCellInfo.idl',
]

UNIFIED_SOURCES += [
    'Assertions.cpp',
    'DOMMMIError.cpp',
    'ipc/MobileConnectionChild.cpp',
    'ipc/MobileConnectionIPCService.cpp',
    'ipc/MobileConnectionParent.cpp',
    'MobileCallForwardingOptions.cpp',
    'MobileCellInfo.cpp',
    'MobileConnectionArray.cpp',
    'MobileConnectionCallback.cpp',
    'MobileConnectionInfo.cpp',
    'MobileNetworkInfo.cpp',
]

SOURCES += [
    'MobileConnection.cpp', # Non-unified due to no_pgo
]

if CONFIG['_MSC_VER'] and CONFIG['CPU_ARCH'] == 'x86_64':
    SOURCES['MobileConnection.cpp'].no_pgo = True # VS2013 crashes, bug 1084162

IPDL_SOURCES += [
    'ipc/PMobileConnection.ipdl',
    'ipc/PMobileConnectionRequest.ipdl',
    'ipc/PMobileConnectionTypes.ipdlh',
]

if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and CONFIG['MOZ_B2G_RIL']:
    XPIDL_SOURCES += [
        'gonk/nsIGonkMobileConnectionService.idl',
        'gonk/nsIMobileConnectionMessenger.idl',
    ]
    EXTRA_COMPONENTS += [
        'gonk/MobileConnectionService.js',
        'gonk/MobileConnectionService.manifest',
    ]

FAIL_ON_WARNINGS = True

include('/ipc/chromium/chromium-config.mozbuild')

FINAL_LIBRARY = 'xul'

XPIDL_MODULE = 'dom_mobileconnection'
back to top