mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-29 19:11:47 +00:00
8375688356
- Bug 1257418 - Remove USE_DEPENDENT_LIBS. r=gps (fbe746751a)
- Bug 1255817 part 3. Remove the now-unreachable JS_ReportPendingException call in nsXPCWrappedJSClass::CallQueryInterfaceOnJSObject. r=bholley (dbffe901a9)
- Bug 1255817 part 4. Make XPCJSRuntime use MozCrashErrorReporter by default, now that there should be no stray JS_ReportPendingException calls. r=bholley (68d82e4b68)
- Bug 1245000 part 1 - Add a preference for enabling Element.animate; r=bz (d94ab6f1d9)
- Bug 1245000 part 2 - Don't ship Animation.ready; r=bz (129a052a16)
- Bug 1245000 part 3 - Turn on Element.animate in release channels too; r=bz (cc6743c31d)
- Bug 1245000 part 4 - Enable the Animation constructor when Element.animate is enabled; r=bz (8a65bdedcb)
- Bug 1247685 - WebIDL and DOM implementation changes for app server keys. r=mt,baku (69870bd979)
- Bug 1248565 - Introduce MOZ_LOG_* variables for mozilla logging. r=erahm (ea236d3b26)
- Bug 1258231 - Lock while iterating console messages. r=mccr8 (2b54be114d)
- bug 1252104 - make NS_ERROR_GET_CODE() and NS_ERROR_GET_MODULE() constexpr r=froydnj (f29ae0f6de)
- Bug 1221160 - fix AutoTraceLogLock deadlock on Windows; r=froydnj (11f1c2a071)
- Bug 1251895 - don't race on nsTraceRefcnt's object serial number tables; r=mccr8 (2d52aceffe)
69 lines
1.3 KiB
INI
69 lines
1.3 KiB
INI
# 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/.
|
|
|
|
EXTRA_COMPONENTS += [
|
|
'Push.js',
|
|
'Push.manifest',
|
|
'PushComponents.js',
|
|
]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
'PushCrypto.jsm',
|
|
'PushDB.jsm',
|
|
'PushRecord.jsm',
|
|
'PushService.jsm',
|
|
]
|
|
|
|
if CONFIG['MOZ_BUILD_APP'] != 'mobile/android':
|
|
# Everything but Fennec.
|
|
EXTRA_JS_MODULES += [
|
|
'PushServiceHttp2.jsm',
|
|
'PushServiceWebSocket.jsm',
|
|
]
|
|
else:
|
|
# Fennec only.
|
|
EXTRA_JS_MODULES += [
|
|
'PushServiceAndroidGCM.jsm',
|
|
]
|
|
|
|
MOCHITEST_MANIFESTS += [
|
|
'test/mochitest.ini',
|
|
]
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
'test/xpcshell/xpcshell.ini',
|
|
]
|
|
|
|
EXPORTS.mozilla.dom += [
|
|
'PushManager.h',
|
|
'PushNotifier.h',
|
|
'PushSubscription.h',
|
|
'PushSubscriptionOptions.h',
|
|
'PushUtil.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'PushManager.cpp',
|
|
'PushNotifier.cpp',
|
|
'PushSubscription.cpp',
|
|
'PushSubscriptionOptions.cpp',
|
|
'PushUtil.cpp',
|
|
]
|
|
|
|
TEST_DIRS += ['test/xpcshell']
|
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
CXXFLAGS += ['-Wshadow']
|
|
|
|
LOCAL_INCLUDES += [
|
|
'../base',
|
|
'../ipc',
|
|
'../workers',
|
|
]
|
|
|
|
FINAL_LIBRARY = 'xul'
|