| OLD | NEW |
| 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 1 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 EXECUTABLES="ffmpeg ffmpeg_g ffprobe ffprobe_g" | 5 EXECUTABLES="ffmpeg ffmpeg_g ffprobe ffprobe_g" |
| 6 | 6 |
| 7 # needed for RLIMIT_CPU | 7 # needed for RLIMIT_CPU |
| 8 EnableGlibcCompat | 8 EnableGlibcCompat |
| 9 | 9 |
| 10 ConfigureStep() { | 10 ConfigureStep() { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 --enable-cross-compile \ | 34 --enable-cross-compile \ |
| 35 --disable-inline-asm \ | 35 --disable-inline-asm \ |
| 36 --disable-ssse3 \ | 36 --disable-ssse3 \ |
| 37 --disable-mmx \ | 37 --disable-mmx \ |
| 38 --disable-amd3dnow \ | 38 --disable-amd3dnow \ |
| 39 --disable-amd3dnowext \ | 39 --disable-amd3dnowext \ |
| 40 --disable-indevs \ | 40 --disable-indevs \ |
| 41 --enable-libmp3lame \ | 41 --enable-libmp3lame \ |
| 42 --enable-libvorbis \ | 42 --enable-libvorbis \ |
| 43 --enable-libtheora \ | 43 --enable-libtheora \ |
| 44 --enable-libvpx \ |
| 44 --disable-ffplay \ | 45 --disable-ffplay \ |
| 45 --disable-ffserver \ | 46 --disable-ffserver \ |
| 46 --disable-demuxer=rtsp \ | 47 --disable-demuxer=rtsp \ |
| 47 --disable-demuxer=image2 \ | 48 --disable-demuxer=image2 \ |
| 48 --prefix=${PREFIX} \ | 49 --prefix=${PREFIX} \ |
| 49 ${extra_args} | 50 ${extra_args} |
| 50 } | 51 } |
| 51 | 52 |
| 52 TestStep() { | 53 TestStep() { |
| 53 SetupCrossPaths | 54 SetupCrossPaths |
| 54 LogExecute make testprogs | 55 LogExecute make testprogs |
| 55 } | 56 } |
| OLD | NEW |