author | Steven Lee <slee@mozilla.com> |
Tue, 19 Mar 2013 16:02:43 -0400 | |
changeset 125490 | d8b5d339bb1b22e6fd778d16f75f0755c05655b3 |
parent 125489 | cad5306d569ec581f1cf9bb15a73999f377a21be |
child 125491 | b7bd912ce45a49a14dbd2ebec3208a8d866f206a |
push id | 24459 |
push user | emorley@mozilla.com |
push date | Wed, 20 Mar 2013 11:46:36 +0000 |
treeherder | mozilla-central@1d6fe70c79c5 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jesup, ted |
bugs | 818843 |
milestone | 22.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
|
configure.in | file | annotate | diff | comparison | revisions |
--- a/configure.in +++ b/configure.in @@ -5244,18 +5244,22 @@ if test "$NS_PRINTING"; then fi dnl Turn off webrtc for OS's we don't handle yet, but allow dnl --enable-webrtc to override. Can disable for everything in dnl the master list above. if test -n "$MOZ_WEBRTC"; then case "$target" in *-android*|*-linuxandroid*) - dnl Make sure doesn't get matched by *-linux* - MOZ_WEBRTC= + if test -n "$MOZ_B2G"; then + MOZ_WEBRTC=1 + else + dnl Make sure doesn't get matched by *-linux* + MOZ_WEBRTC= + fi ;; *-linux*|*-mingw*|*-darwin*) dnl Leave enabled ;; *) dnl default to disabled for all others MOZ_WEBRTC= ;; @@ -5273,28 +5277,30 @@ MOZ_ARG_DISABLE_BOOL(webrtc, if test -n "$MOZ_WEBRTC"; then AC_DEFINE(MOZ_WEBRTC) MOZ_MEDIA=1 MOZ_RAW=1 MOZ_VP8=1 MOZ_VP8_ENCODER=1 MOZ_VP8_ERROR_CONCEALMENT=1 - dnl OpenSLES is only available in Android 2.3 and later; we'll change this - dnl hard dependency to a dynamic load with graceful runtime failure before - dnl we make --enable-webrtc on by default in Android (bug 815905) - dnl - if test "$OS_TARGET" = "Android"; then - LDFLAGS="$LDFLAGS -lOpenSLES" - fi - case "$target" in - *-android*|*-linuxandroid*) - LDFLAGS="$LDFLAGS -lOpenSLES" - ;; - esac + if test "$MOZ_WIDGET_TOOLKIT" != "gonk"; then + dnl OpenSLES is only available in Android 2.3 and later; we'll change this + dnl hard dependency to a dynamic load with graceful runtime failure before + dnl we make --enable-webrtc on by default in Android (bug 815905) + dnl + if test "$OS_TARGET" = "Android"; then + LDFLAGS="$LDFLAGS -lOpenSLES" + fi + case "$target" in + *-android*|*-linuxandroid*) + LDFLAGS="$LDFLAGS -lOpenSLES" + ;; + esac + fi dnl enable once Signaling lands MOZ_WEBRTC_SIGNALING=1 AC_DEFINE(MOZ_WEBRTC_SIGNALING) if test "${OS_TARGET}" = "WINNT"; then MOZ_WEBRTC_IN_LIBXUL=1 fi dnl enable once PeerConnection lands @@ -9038,17 +9044,21 @@ if test "${OS_TARGET}" = "WINNT"; then if test "$HAVE_64BIT_OS"; then OS_BITS=64 else OS_BITS=32 fi EXTRA_GYP_DEFINES="-D MSVS_VERSION=${_MSVS_VERSION} -D MSVS_OS_BITS=${OS_BITS}" elif test "${OS_TARGET}" = "Android"; then - EXTRA_GYP_DEFINES="-D gtest_target_type=executable -D android_toolchain=${android_toolchain} -G os=android " + if test "${MOZ_WIDGET_TOOLKIT}" = "gonk"; then + EXTRA_GYP_DEFINES="-G os=linux " + else + EXTRA_GYP_DEFINES="-D gtest_target_type=executable -D android_toolchain=${android_toolchain} -G os=android " + fi fi if test -n "$ARM_ARCH"; then if test "$ARM_ARCH" -lt 7; then EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D armv7=0 " else if test "${OS_TARGET}" = "Android"; then EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D armv7=1 " @@ -9063,20 +9073,30 @@ fi # Don't try to compile sse4.1 code if toolchain doesn't support if test -z "$HAVE_TOOLCHAIN_SUPPORT_MSSE4_1"; then EXTRA_GYP_DEFINES="$EXTRA_GYP_DEFINES -D yuv_disable_asm=1" fi if test -n "$MOZ_WEBRTC"; then AC_MSG_RESULT("generating WebRTC Makefiles...") + if test "${MOZ_WIDGET_TOOLKIT}" = "gonk"; then + EXTRA_GYP_DEFINES="${EXTRA_GYP_DEFINES} -D build_with_gonk=1" + fi + dnl Any --include files must also appear in -D FORCED_INCLUDE_FILE= entries dnl so that regeneration via dependencies works correctly WEBRTC_CONFIG="-D build_with_mozilla=1 -D build_with_chromium=0 --include ${srcdir}/media/webrtc/webrtc_config.gypi -D FORCED_INCLUDE_FILE=${srcdir}/media/webrtc/webrtc_config.gypi" + if test -n HAVE_CLOCK_MONOTONIC; then + WEBRTC_CONFIG="${WEBRTC_CONFIG} -D have_clock_monotonic=1" + else + WEBRTC_CONFIG="${WEBRTC_CONFIG} -D have_clock_monotonic=0" + fi + GYP_WEBRTC_OPTIONS="--format=mozmake ${WEBRTC_CONFIG} -D target_arch=${WEBRTC_TARGET_ARCH} ${EXTRA_GYP_DEFINES} --depth=${srcdir}/media/webrtc/trunk --toplevel-dir=${srcdir} -G OBJDIR=${_objdir}" $PYTHON ${srcdir}/media/webrtc/trunk/build/gyp_chromium \ $GYP_WEBRTC_OPTIONS \ --generator-output=${_objdir}/media/webrtc/trunk \ ${srcdir}/media/webrtc/trunk/peerconnection.gyp if test "$?" != 0; then AC_MSG_ERROR([failed to generate WebRTC Makefiles])