From: commit-queue@webkit.org Date: Tue, 10 Sep 2013 22:45:59 +0000 (+0000) Subject: Fix EFL build after r155477 X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=a66daf120eeee3b4d11ff88d1b3859284f7a0559;ds=inline Fix EFL build after r155477 https://bugs.webkit.org/show_bug.cgi?id=121126 Patch by Sergio Correia on 2013-09-10 Reviewed by Antonio Gomes. No new tests, build fix. * CMakeLists.txt: MediaStreamComponent.cpp and MediaStreamDescriptor.cpp were added with an incorrect path. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@155486 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebCore/CMakeLists.txt b/Source/WebCore/CMakeLists.txt index a18ed5a29bbd..b6002de28dc6 100644 --- a/Source/WebCore/CMakeLists.txt +++ b/Source/WebCore/CMakeLists.txt @@ -836,8 +836,6 @@ set(WebCore_SOURCES Modules/mediastream/LocalMediaStream.cpp Modules/mediastream/MediaConstraintsImpl.cpp Modules/mediastream/MediaStream.cpp - Modules/mediastream/MediaStreamComponent.cpp - Modules/mediastream/MediaStreamDescriptor.cpp Modules/mediastream/MediaStreamEvent.cpp Modules/mediastream/MediaStreamRegistry.cpp Modules/mediastream/MediaStreamTrack.cpp @@ -2015,6 +2013,8 @@ set(WebCore_SOURCES platform/leveldb/LevelDBWriteBatch.cpp platform/mediastream/MediaStreamCenter.cpp + platform/mediastream/MediaStreamComponent.cpp + platform/mediastream/MediaStreamDescriptor.cpp platform/mediastream/MediaStreamSource.cpp platform/mediastream/RTCIceCandidateDescriptor.cpp platform/mediastream/RTCPeerConnectionHandler.cpp diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 444e71ca6531..6eae0d5703db 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,3 +1,15 @@ +2013-09-10 Sergio Correia + + Fix EFL build after r155477 + https://bugs.webkit.org/show_bug.cgi?id=121126 + + Reviewed by Antonio Gomes. + + No new tests, build fix. + + * CMakeLists.txt: MediaStreamComponent.cpp and MediaStreamDescriptor.cpp + were added with an incorrect path. + 2013-09-10 Andreas Kling AnimationController should have a Frame& internally.