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

Side by Side Diff: tracing/third_party/tvcm/run_py_tests

Issue 1376953005: Move tracing/third_party/tvcm -> third_party/py_vulcanize. (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: Created 5 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 # Copyright 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 import os
7 import sys
8
9 _CATAPULT = os.path.abspath(
10 os.path.join(os.path.dirname(__file__),
11 os.path.pardir, os.path.pardir, os.path.pardir))
12
13
14 def _AddToPathIfNeeded(path):
15 if path not in sys.path:
16 sys.path.insert(0, path)
17
18
19 if __name__ == '__main__':
20 _AddToPathIfNeeded(_CATAPULT)
21 from catapult_build import run_with_typ
22 sys.exit(run_with_typ.Run(
23 os.path.join(_CATAPULT, 'tracing', 'third_party', 'tvcm')))
24
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698