Index: tracing/third_party/tvcm/run_py_tests |
diff --git a/tracing/third_party/tvcm/run_py_tests b/tracing/third_party/tvcm/run_py_tests |
deleted file mode 100755 |
index d3580712bc28412cddf8a04549f0e58919734c43..0000000000000000000000000000000000000000 |
--- a/tracing/third_party/tvcm/run_py_tests |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-#!/usr/bin/env python |
-# Copyright 2015 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. |
- |
-import os |
-import sys |
- |
-_CATAPULT = os.path.abspath( |
- os.path.join(os.path.dirname(__file__), |
- os.path.pardir, os.path.pardir, os.path.pardir)) |
- |
- |
-def _AddToPathIfNeeded(path): |
- if path not in sys.path: |
- sys.path.insert(0, path) |
- |
- |
-if __name__ == '__main__': |
- _AddToPathIfNeeded(_CATAPULT) |
- from catapult_build import run_with_typ |
- sys.exit(run_with_typ.Run( |
- os.path.join(_CATAPULT, 'tracing', 'third_party', 'tvcm'))) |
- |