author | Ed Morley <emorley@mozilla.com> |
Fri, 25 Oct 2013 10:52:23 +0100 | |
changeset 166953 | e10a51bf91083d17b08b387ddee33ddeb4698d40 |
parent 166952 | ab8db0fa3da7d0931794932c0c9153e45bf6908c |
child 166954 | 82466b85d84495a911a84adb19f6a54bc8893d1f |
push id | 428 |
push user | bbajaj@mozilla.com |
push date | Tue, 28 Jan 2014 00:16:25 +0000 |
treeherder | mozilla-release@cd72a7ff3a75 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 920551 |
milestone | 27.0a1 |
backs out | 44058b66333f65c240c57339a65e64397edbd129 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
dom/moz.build | file | annotate | diff | comparison | revisions | |
dom/wappush/moz.build | file | annotate | diff | comparison | revisions | |
dom/wappush/src/moz.build | file | annotate | diff | comparison | revisions |
--- a/dom/moz.build +++ b/dom/moz.build @@ -67,31 +67,31 @@ PARALLEL_DIRS += [ 'indexedDB', 'system', 'ipc', 'identity', 'workers', 'camera', 'audiochannel', 'promise', + 'wappush', 'telephony', 'inputmethod', 'webidl', ] if CONFIG['OS_ARCH'] == 'WINNT': PARALLEL_DIRS += ['plugins/ipc/hangui'] if CONFIG['MOZ_B2G_RIL']: PARALLEL_DIRS += [ 'wifi', 'icc', 'cellbroadcast', 'voicemail', - 'wappush', ] if CONFIG['MOZ_PAY']: PARALLEL_DIRS += ['payment'] if CONFIG['MOZ_GAMEPAD']: PARALLEL_DIRS += ['gamepad']
--- a/dom/wappush/moz.build +++ b/dom/wappush/moz.build @@ -1,9 +1,9 @@ # 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/. PARALLEL_DIRS += ['interfaces', 'src'] -if CONFIG['ENABLE_TESTS']: +if CONFIG['MOZ_B2G_RIL'] and CONFIG['ENABLE_TESTS']: XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell.ini']
--- a/dom/wappush/src/moz.build +++ b/dom/wappush/src/moz.build @@ -1,14 +1,14 @@ # -*- 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/. -if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and CONFIG['MOZ_B2G_RIL']: +if CONFIG['MOZ_B2G_RIL']: EXTRA_JS_MODULES = [ 'gonk/CpPduHelper.jsm', 'gonk/SiPduHelper.jsm', 'gonk/SlPduHelper.jsm', 'gonk/WapPushManager.js', 'gonk/WbxmlPduHelper.jsm' ]