This script is not used any more.
Change-Id: I31bbade63f4eb037de233e18243a1728b9106f10
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
+++ /dev/null
-#!/bin/bash
-# Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-if [ ! `which cpplint.py` ]; then
- echo -e "\nPlease make sure cpplint.py is in your PATH. It is part of depot_tools inside Chromium repository."
- exit 1
-fi
-
-OLDPWD=$PWD
-BASE=`dirname $0`
-cd $BASE/..
-
-# filters
-FILTERS="-readability/streams,-build/c++11"
-
-cpplint.py --root=src --filter="$FILTERS" $(find . \( -name '*.h' -o -name '*.cc' \) )
-RET=$?
-
-JS_RET_VAL=$?
-cd $OLDPWD
-
-if [ "x$RET" == "x0" ]; then
- exit 0
-else
- exit 1
-fi