Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: ports/ffmpeg/build.sh

Issue 1391383002: Enable network code in ffmpeg (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 20 matching lines...) Expand all
31 --target-os=linux \ 31 --target-os=linux \
32 --enable-gpl \ 32 --enable-gpl \
33 --enable-static \ 33 --enable-static \
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 --disable-protocols \
42 --disable-network \
43 --enable-protocol=file \
44 --enable-libmp3lame \ 41 --enable-libmp3lame \
45 --enable-libvorbis \ 42 --enable-libvorbis \
46 --enable-libtheora \ 43 --enable-libtheora \
47 --disable-ffplay \ 44 --disable-ffplay \
48 --disable-ffserver \ 45 --disable-ffserver \
49 --disable-demuxer=rtsp \ 46 --disable-demuxer=rtsp \
50 --disable-demuxer=image2 \ 47 --disable-demuxer=image2 \
51 --prefix=${PREFIX} \ 48 --prefix=${PREFIX} \
52 ${extra_args} 49 ${extra_args}
53 } 50 }
54 51
55 TestStep() { 52 TestStep() {
56 SetupCrossPaths 53 SetupCrossPaths
57 LogExecute make testprogs 54 LogExecute make testprogs
58 } 55 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698