Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(830)

Unified Diff: third_party/clang_format/bin/rm_binaries.py

Issue 371313002: Remove last traces of third_party/clang_format (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/clang_format/README.chromium ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/clang_format/bin/rm_binaries.py
diff --git a/third_party/clang_format/bin/rm_binaries.py b/third_party/clang_format/bin/rm_binaries.py
deleted file mode 100644
index 3730dbd0ce16479f2872e95bfd7d164cf7a64b63..0000000000000000000000000000000000000000
--- a/third_party/clang_format/bin/rm_binaries.py
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 2014 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.
-
-# This script removes the platform-specific clang_format binaries from
-# third_party/clang_format/bin* now that the binaries have been moved to
-# src/buildtools. Keeping the old ones around will be pretty confusing since
-# the version will be out-of-date.
-#
-# This script assumes it is located in third_party/clang_format/bin and locates
-# the binaries relative to itself.
-#
-# TODO(jochen) remove this script when people have likely been updated.
-# End of July 2014 would be good.
-
-import os
-import sys
-
-bin_dir = os.path.dirname(__file__)
-
-# Typically only one platform will have binaries. Remove them all just in case,
-# but ignore all errors.
-
-try:
- os.remove(os.path.join(bin_dir, "linux", "clang-format"))
-except:
- pass
-
-try:
- os.remove(os.path.join(bin_dir, "mac", "clang-format"))
-except:
- pass
-
-try:
- os.remove(os.path.join(bin_dir, "win", "clang-format.exe"))
-except:
- pass
-
« no previous file with comments | « third_party/clang_format/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698