blob: 9b56aaeda55c80931dbd936a981c8d604edc46ca [file] [log] [blame]
#!/bin/bash -eu
# Copyright 2018 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.
#
################################################################################
# moz.build
$CC $CFLAGS -c \
-DNDEBUG -msse -msse2 -Wno-missing-field-initializers \
chain.c \
iccread.c \
matrix.c \
transform.cpp \
transform-sse1.cpp \
transform-sse2.cpp \
transform_util.c
$CXX $CXXFLAGS -std=c++11 \
-I. *.o \
-DBUILD_FOR_OSSFUZZ \
$LIB_FUZZING_ENGINE \
fuzztest/qcms_fuzzer.cpp -o $OUT/fuzz
find fuzztest -iname "*.icc" \
-type f -exec zip -qju $OUT/fuzz_seed_corpus.zip "{}" \;
cp fuzztest/qcms_fuzzer.dict $OUT/fuzz.dict