aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Abhishek Arya <inferno@chromium.org>2020-03-12 08:15:53 -0700
committerGravatar GitHub <noreply@github.com>2020-03-12 08:15:53 -0700
commit88030256a4e07a2feb1b6c7d7cc78d93a57e18c1 (patch)
tree13e56efc672348d46a7b445f8cc910e5a37d3190
parent1a89d904e87a23b087be2d1bf97bc9006312ae2a (diff)
[chakra] Remove chakra project as it is unmaintained. (#3491)
-rw-r--r--projects/chakra/Dockerfile22
-rwxr-xr-xprojects/chakra/build.sh32
-rw-r--r--projects/chakra/project.yaml7
3 files changed, 0 insertions, 61 deletions
diff --git a/projects/chakra/Dockerfile b/projects/chakra/Dockerfile
deleted file mode 100644
index 27db5dbf..00000000
--- a/projects/chakra/Dockerfile
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 2017 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.
-#
-################################################################################
-
-FROM gcr.io/oss-fuzz-base/base-builder
-MAINTAINER ochang@google.com
-RUN apt-get update && apt-get install -y build-essential cmake libicu-dev python
-RUN git clone --depth 1 https://github.com/Microsoft/ChakraCore.git chakra
-WORKDIR chakra
-COPY build.sh $SRC/
diff --git a/projects/chakra/build.sh b/projects/chakra/build.sh
deleted file mode 100755
index bde4088c..00000000
--- a/projects/chakra/build.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/bash -eu
-# Copyright 2017 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.
-#
-################################################################################
-
-DISABLED_WARNINGS='-Wno-everything'
-
-# Inject additional C/CXXFLAGS
-cat <<EOF > /usr/local/bin/cmake
-#!/bin/sh
-/usr/bin/cmake \\
- -DCMAKE_C_FLAGS="\$CFLAGS $DISABLED_WARNINGS" \\
- -DCMAKE_CXX_FLAGS="\$CXXFLAGS $DISABLED_WARNINGS" \\
- "\$@"
-EOF
-
-chmod +x /usr/local/bin/cmake
-
-./build.sh --test-build --static --embed-icu --cc="$(which clang)" --cxx="$(which clang++)" -j -v -y
-cp out/Test/ch $OUT
diff --git a/projects/chakra/project.yaml b/projects/chakra/project.yaml
deleted file mode 100644
index 96a67d48..00000000
--- a/projects/chakra/project.yaml
+++ /dev/null
@@ -1,7 +0,0 @@
-homepage: "https://github.com/Microsoft/ChakraCore"
-language: c++
-primary_contact: "ChakraCoreEng@microsoft.com"
-fuzzing_engines:
- - none
-sanitizers:
- - address