author | Jean-Yves Avenard <jyavenard@mozilla.com> |
Thu, 16 Feb 2017 10:14:19 +0100 | |
changeset 343497 | a4b22fd48c583795b067bdade072e866d2183c15 |
parent 343496 | 1f54c7ac6ce28017940c216398f903cd27fb3567 |
child 343498 | 26aa275d7c644a4991c418c845dd009d17470dfc |
push id | 31381 |
push user | kwierso@gmail.com |
push date | Fri, 17 Feb 2017 20:45:51 +0000 |
treeherder | mozilla-central@f302def88fe5 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | cpearce |
bugs | 1334061 |
milestone | 54.0a1 |
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
|
--- a/dom/media/platforms/agnostic/gmp/moz.build +++ b/dom/media/platforms/agnostic/gmp/moz.build @@ -2,21 +2,19 @@ # 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/. EXPORTS += [ 'GMPDecoderModule.h', 'GMPVideoDecoder.h', - 'MediaDataDecoderProxy.h', ] UNIFIED_SOURCES += [ 'GMPDecoderModule.cpp', 'GMPVideoDecoder.cpp', - 'MediaDataDecoderProxy.cpp', ] # GMPVideoEncodedFrameImpl.h needs IPC include('/ipc/chromium/chromium-config.mozbuild') FINAL_LIBRARY = 'xul'
--- a/dom/media/platforms/moz.build +++ b/dom/media/platforms/moz.build @@ -9,29 +9,32 @@ EXPORTS += [ 'agnostic/OpusDecoder.h', 'agnostic/TheoraDecoder.h', 'agnostic/VorbisDecoder.h', 'agnostic/VPXDecoder.h', 'DurationMap.h', 'MediaTelemetryConstants.h', 'PDMFactory.h', 'PlatformDecoderModule.h', - 'wrappers/H264Converter.h' + 'wrappers/H264Converter.h', + 'wrappers/MediaDataDecoderProxy.h' + ] UNIFIED_SOURCES += [ 'agnostic/AgnosticDecoderModule.cpp', 'agnostic/BlankDecoderModule.cpp', 'agnostic/OpusDecoder.cpp', 'agnostic/TheoraDecoder.cpp', 'agnostic/VorbisDecoder.cpp', 'agnostic/VPXDecoder.cpp', 'agnostic/WAVDecoder.cpp', 'PDMFactory.cpp', - 'wrappers/H264Converter.cpp' + 'wrappers/H264Converter.cpp', + 'wrappers/MediaDataDecoderProxy.cpp' ] DIRS += [ 'agnostic/eme', 'agnostic/gmp', 'omx' ]