Revision f450c0db35d7e14084849328bbbfbd6f3787437b authored by B2G Bumper Bot on 27 May 2014, 09:31:29 UTC, committed by B2G Bumper Bot on 27 May 2014, 09:31:29 UTC
Truncated some number of revisions since the previous bump.

========

https://hg.mozilla.org/integration/gaia-central/rev/61fc22650b9f
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Merge pull request #19353 from KevinGrandon/bug_971552_system2_sleep_menu

Bug 971552 - [System2] Instantiable SleepMenu

========

https://hg.mozilla.org/integration/gaia-central/rev/c69c72e0ff74
Author: Kevin Grandon <kevingrandon@yahoo.com>
Desc: Bug 971552 - [System2] Instantiable SleepMenu r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/fe96e25e6461
Author: Cristian Rodriguez <crdlc@tid.es>
Desc: Merge pull request #19541 from crdlc/bug-1010651

Bug 1010651 - (vertical-homescreen) RocketBar missing search icon

========

https://hg.mozilla.org/integration/gaia-central/rev/b59f7c17f6da
Author: crdlc <crdlc@tid.es>
Desc: Bug 1010651 - (vertical-homescreen) RocketBar missing search icon

========

https://hg.mozilla.org/integration/gaia-central/rev/fe3c2b943843
Author: evanxd <itoyxd@gmail.com>
Desc: Merge pull request #19363 from RudyLu/ime/Bug1010021

Bug 1010021 - Add integration test to cover 3rd-party IME installation.

========

https://hg.mozilla.org/integration/gaia-central/rev/3f225f7831ce
Author: Rudy Lu <me@rudy.lu>
Desc: Bug 1010021 - Add integration test to cover 3rd-party IME installation.

========

https://hg.mozilla.org/integration/gaia-central/rev/fa14a8722d19
Author: dwi2 <dwi2@dwi2.com>
Desc: Merge pull request #19426 from dwi2/bug1003646

Bug 1003646 - Dismiss action menu when app is opened r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/ad04bd5ff3de
Author: Tzu-Lin Huang <tzhuang@mozilla.com>
Desc: Bug 1003646 - Dismiss action menu of activity when app is opened

========

https://hg.mozilla.org/integration/gaia-central/rev/fceb38c3db65
Author: gasolin <gasolin@gmail.com>
Desc: Merge pull request #19632 from gasolin/issue-1005800

reorder nfc import order to receive holdhome event before task manager, r=alive

========

https://hg.mozilla.org/integration/gaia-central/rev/9fae7f965c6b
Author: gasolin <gasolin@gmail.com>
Desc: reorder nfc import order to receive holdhome event before task manager
1 parent 76df62a
Raw File
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/.

XPIDL_SOURCES += [
    'nsITelephonyProvider.idl',
]

XPIDL_MODULE = 'dom_telephony'

EXPORTS.mozilla.dom += [
    'CallEvent.h',
    'CallsList.h',
    'Telephony.h',
    'TelephonyCall.h',
    'TelephonyCallGroup.h',
]

EXPORTS.mozilla.dom.telephony += [
    'ipc/TelephonyChild.h',
    'ipc/TelephonyParent.h',
    'TelephonyCommon.h',
    'TelephonyFactory.h',
]

UNIFIED_SOURCES += [
    'CallEvent.cpp',
    'CallsList.cpp',
    'ipc/TelephonyChild.cpp',
    'ipc/TelephonyIPCProvider.cpp',
    'ipc/TelephonyParent.cpp',
    'Telephony.cpp',
    'TelephonyCall.cpp',
    'TelephonyCallGroup.cpp',
    'TelephonyFactory.cpp',
]

IPDL_SOURCES += [
    'ipc/PTelephony.ipdl',
    'ipc/PTelephonyRequest.ipdl',
    'ipc/TelephonyTypes.ipdlh'
]

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

FAIL_ON_WARNINGS = True
include('/ipc/chromium/chromium-config.mozbuild')

FINAL_LIBRARY = 'gklayout'
back to top