aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Wiitala <miu@chromium.org>2020-01-10 15:17:48 -0800
committerCommit Bot <commit-bot@chromium.org>2020-01-13 21:40:16 +0000
commitf6883cdf0aa06724abd90d2a698463f4a298c162 (patch)
tree50e1bdeedfafa9fcf4b96d0febf62ab78ebf3fff
parent72afb9c6d7e4b20e649db9c1099de2f771e83445 (diff)
downloadopenscreen-f6883cdf0aa06724abd90d2a698463f4a298c162.tar.gz
Delete tools/install-build-tools.sh.
Also deleted the reference to it from PRESUBMIT.sh since it should be downloaded by `gclient sync` in the bot recipes. Bug: openscreen:96 Change-Id: Ib4d0eaa690c4900ca07efff3f3c21a48315d6f51 Reviewed-on: https://chromium-review.googlesource.com/c/openscreen/+/1995759 Commit-Queue: Jordan Bayles <jophba@chromium.org> Reviewed-by: Jordan Bayles <jophba@chromium.org>
-rwxr-xr-xPRESUBMIT.sh5
-rwxr-xr-xtools/install-build-tools.sh7
2 files changed, 0 insertions, 12 deletions
diff --git a/PRESUBMIT.sh b/PRESUBMIT.sh
index 8181f115..6c4e9009 100755
--- a/PRESUBMIT.sh
+++ b/PRESUBMIT.sh
@@ -59,11 +59,6 @@ if [[ "$invoker" != 'python' ]]; then
echo "This shouldn't be invoked directly, please use \`git cl presubmit\`."
fi
-# TODO(jophba): check in a better fix for the build bots.
-if command -v clang-format &> /dev/null; then
- tools/install-build-tools.sh &> /dev/null
-fi
-
for f in $(git diff --name-only --diff-filter=d origin/master); do
# Skip third party files, except our custom BUILD.gns
if [[ $f =~ third_party/[^\/]*/src ]]; then
diff --git a/tools/install-build-tools.sh b/tools/install-build-tools.sh
deleted file mode 100755
index d4f75fe2..00000000
--- a/tools/install-build-tools.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/usr/bin/env bash
-# Copyright 2018 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# TODO(crbug.com/openscreen/96): Remove bot config that runs this file.
-echo "You don't need to run this anymore. Just gclient sync!"