2016-11-08 19:15:23 +00:00
|
|
|
# Copyright 2016 Google Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2017-03-22 19:12:51 +00:00
|
|
|
FROM gcr.io/oss-fuzz-base/base-builder
|
2016-11-08 19:15:23 +00:00
|
|
|
MAINTAINER mmoroz@chromium.org
|
2017-05-02 06:31:02 +00:00
|
|
|
RUN apt-get update && apt-get install -y make autoconf automake libtool build-essential \
|
2016-11-08 19:15:23 +00:00
|
|
|
libass-dev libfreetype6-dev libsdl1.2-dev \
|
|
|
|
libvdpau-dev libxcb1-dev libxcb-shm0-dev \
|
|
|
|
pkg-config texinfo libbz2-dev zlib1g-dev nasm yasm cmake mercurial wget \
|
|
|
|
xutils-dev libpciaccess-dev
|
|
|
|
|
2016-11-30 02:58:53 +00:00
|
|
|
RUN git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
|
2016-11-08 19:15:23 +00:00
|
|
|
|
|
|
|
RUN wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.1.0.tar.bz2
|
2016-11-30 02:58:53 +00:00
|
|
|
RUN git clone git://anongit.freedesktop.org/mesa/drm
|
|
|
|
RUN git clone https://github.com/mstorsjo/fdk-aac.git
|
2016-12-28 22:07:18 +00:00
|
|
|
ADD https://sourceforge.net/projects/lame/files/latest/download lame.tar.gz
|
2016-11-30 02:58:53 +00:00
|
|
|
RUN git clone git://anongit.freedesktop.org/xorg/lib/libXext
|
|
|
|
RUN git clone git://anongit.freedesktop.org/git/xorg/lib/libXfixes
|
2017-02-20 06:41:59 +00:00
|
|
|
RUN git clone https://github.com/01org/libva
|
2016-11-30 02:58:53 +00:00
|
|
|
RUN git clone git://people.freedesktop.org/~aplattner/libvdpau
|
|
|
|
RUN git clone https://chromium.googlesource.com/webm/libvpx
|
2016-11-08 19:15:23 +00:00
|
|
|
RUN svn co http://svn.xiph.org/trunk/ogg
|
2016-11-30 02:58:53 +00:00
|
|
|
RUN git clone git://git.xiph.org/opus.git
|
|
|
|
RUN git clone git://git.xiph.org/theora.git
|
|
|
|
RUN git clone git://git.xiph.org/vorbis.git
|
|
|
|
RUN git clone git://git.videolan.org/git/x264.git
|
2016-11-08 19:15:23 +00:00
|
|
|
RUN hg clone https://bitbucket.org/multicoreware/x265
|
|
|
|
|
2016-11-18 19:16:38 +00:00
|
|
|
COPY build.sh group_seed_corpus.py $SRC/
|