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

Unified Diff: tools/tests/fix_pythonpath.py

Issue 796813004: Remove tools/tests. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 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
Index: tools/tests/fix_pythonpath.py
diff --git a/tools/tests/fix_pythonpath.py b/tools/tests/fix_pythonpath.py
deleted file mode 100755
index a746a18937727557ab44058e9dc7b3f210fefcd6..0000000000000000000000000000000000000000
--- a/tools/tests/fix_pythonpath.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/python
-
-"""
-Copyright 2014 Google Inc.
-
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
-
-Adds possibly-needed directories to PYTHONPATH, if they aren't already there.
-"""
-
-import os
-import sys
-
-TRUNK_DIRECTORY = os.path.abspath(os.path.join(
- os.path.dirname(__file__), os.pardir, os.pardir))
-for subdir in ['tools']:
- fullpath = os.path.join(TRUNK_DIRECTORY, subdir)
- if fullpath not in sys.path:
- sys.path.append(fullpath)

Powered by Google App Engine
This is Rietveld 408576698