Changeset 181892 in webkit


Ignore:
Timestamp:
Mar 24, 2015 8:11:39 AM (9 years ago)
Author:
Csaba Osztrogonác
Message:

[EFL] Add OpenWebRTC in jhbuild
https://bugs.webkit.org/show_bug.cgi?id=142778

Reviewed by Gyuyoung Kim.

Original patch by Philippe Normand <pnormand@igalia.com>

.:

  • Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if

mediastream build is enabled.

Source/WebCore:

  • PlatformEfl.cmake: Add OpenWebRTC CFLAGS and LDFLAGS.

Tools:

  • efl/install-dependencies: Dependencies for OpenWebRTC.
  • efl/jhbuild.modules: build OpenWebRTC, libusrsctp, libnice and

the openwebrtc gst plugins.

Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r181847 r181892  
     12015-03-24  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [EFL] Add OpenWebRTC in jhbuild
     4        https://bugs.webkit.org/show_bug.cgi?id=142778
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Original patch by Philippe Normand <pnormand@igalia.com>
     9
     10        * Source/cmake/OptionsEfl.cmake: Look for OpenWebRTC library if
     11        mediastream build is enabled.
     12
    1132015-03-23  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Source/WebCore/ChangeLog

    r181888 r181892  
     12015-03-24  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [EFL] Add OpenWebRTC in jhbuild
     4        https://bugs.webkit.org/show_bug.cgi?id=142778
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Original patch by Philippe Normand <pnormand@igalia.com>
     9
     10        * PlatformEfl.cmake: Add OpenWebRTC CFLAGS and LDFLAGS.
     11
    1122015-03-23 Yoav Weiss  <yoav@yoav.ws>
    213
  • trunk/Source/WebCore/PlatformEfl.cmake

    r181468 r181892  
    332332)
    333333
     334if (ENABLE_MEDIA_STREAM)
     335    list(APPEND WebCore_INCLUDE_DIRECTORIES
     336        ${OPENWEBRTC_INCLUDE_DIRS}
     337    )
     338    list(APPEND WebCore_LIBRARIES
     339        ${OPENWEBRTC_LIBRARIES}
     340    )
     341endif ()
     342
    334343if (ENABLE_VIDEO OR ENABLE_WEB_AUDIO)
    335344    list(APPEND WebCore_INCLUDE_DIRECTORIES
  • trunk/Source/cmake/OptionsEfl.cmake

    r181786 r181892  
    195195endif ()
    196196
     197if (ENABLE_MEDIA_STREAM)
     198    find_package(OpenWebRTC)
     199    if (OPENWEBRTC_FOUND)
     200        add_definitions(-DWTF_USE_OPENWEBRTC)
     201    endif ()
     202endif ()
     203
    197204if (ENABLE_NETSCAPE_PLUGIN_API)
    198205    set(ENABLE_PLUGIN_PROCESS 1)
  • trunk/Tools/ChangeLog

    r181880 r181892  
     12015-03-24  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [EFL] Add OpenWebRTC in jhbuild
     4        https://bugs.webkit.org/show_bug.cgi?id=142778
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Original patch by Philippe Normand <pnormand@igalia.com>
     9
     10        * efl/install-dependencies: Dependencies for OpenWebRTC.
     11        * efl/jhbuild.modules: build OpenWebRTC, libusrsctp, libnice and
     12        the openwebrtc gst plugins.
     13
    1142015-03-23  Brent Fulgham  <bfulgham@apple.com>
    215
  • trunk/Tools/efl/install-dependencies

    r179341 r181892  
    7474        libicu-dev \
    7575        libjpeg-dev \
     76        libjson-glib-dev \
    7677        liblua5.1-0-dev \
    7778        libmpg123-dev \
     79        liborc-0.4-dev \
    7880        libp11-kit-dev \
    7981        libpng-dev \
  • trunk/Tools/efl/jhbuild.modules

    r181690 r181892  
    2323      <dep package="libseccomp"/>
    2424      <dep package="atk"/>
     25      <dep package="openwebrtc"/>
    2526    </dependencies>
    2627  </metamodule>
     
    4041  <repository type="tarball" name="freedesktop.org"
    4142      href="http://www.freedesktop.org"/>
     43  <repository type="tarball" name="nice.freedesktop.org"
     44      href="http://nice.freedesktop.org/"/>
    4245  <repository type="tarball" name="enlightenment.fr"
    4346      href="http://git.enlightenment.fr/cgit.cgi/svn/"/>
     
    295298  </autotools>
    296299
     300  <autotools id="libusrsctp" autogen-sh="./bootstrap; ./configure">
     301    <branch repo="github.com" module="ossy-szeged/sctp-refimpl/archive/libusrsctp-r9168.tar.gz" version="r9168" checkoutdir="libusrsctp"
     302            hash="sha256:c1947e6a67fdc0d12f9f078265141125d0df019c7189d60e24f2331f4b6aaec2"
     303            md5sum="468386780c94370b1fb9b446ae3011ad" size="629523">
     304    </branch>
     305  </autotools>
     306
     307  <autotools id="gst-plugins-openwebrtc" supports-parallel-builds="no" autogen-sh="./autogen.sh; ./configure">
     308    <dependencies>
     309      <dep package="gst-plugins-base"/>
     310      <dep package="libusrsctp"/>
     311    </dependencies>
     312   <branch repo="github.com" module="EricssonResearch/openwebrtc-gst-plugins/archive/e359b67484af90f416ea35e301205d2b53c77a14.tar.gz" checkoutdir="gst-plugins-openwebrtc" version="gst-plugins-openwebrtc-20150317"
     313           hash="sha256:a456425efb88de39c16a4f8ac4214aaf53157f9df1323f08de375c77f227b6b7"
     314           md5sum="827f13634ffa83cccf1a6312effbceaa" size="92883">
     315   </branch>
     316  </autotools>
     317
     318  <autotools id="libnice">
     319    <dependencies>
     320      <dep package="gstreamer"/>
     321    </dependencies>
     322    <branch repo="nice.freedesktop.org" module="releases/libnice-0.1.10.tar.gz" checkoutdir="libnice" version="0.1.10"
     323            hash="sha256:1dbfb663b730889ae8cab13a2913fe557d581f70b513c918bbbd0b7d3eefebc9"
     324            md5sum="27b62d0093ce29a39df1c6fcf0bb4396" size="903083">
     325    </branch>
     326  </autotools>
     327
     328  <autotools id="openwebrtc" autogenargs="--enable-bridge=no">
     329    <dependencies>
     330      <dep package="gst-plugins-openwebrtc"/>
     331      <dep package="libnice"/>
     332     </dependencies>
     333    <branch repo="github.com" module="WebRTCinWebKit/openwebrtc/archive/1598e6f612d257196db70d0cf930ede94f83497a.tar.gz" checkoutdir="openwebrtc" version="configurable-sinks"
     334            hash="sha256:584922ffd4cef9f991e6035bb6d87f6b09ded23e245d1ff15db3c0af9cddcf29"
     335            md5sum="1598e6f612d257196db70d0cf930ede94f83497a.tar.gz" size="243435">
     336    </branch>
     337  </autotools>
     338
    297339</moduleset>
Note: See TracChangeset for help on using the changeset viewer.