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

Unified Diff: tracing/tracing_project.py

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 side-by-side diff with in-line comments
Download patch
Index: tracing/tracing_project.py
diff --git a/tracing/tracing_project.py b/tracing/tracing_project.py
index a58fff51e505f7ab6e86d333bd23508aa54f84f7..3970eabb61ded3a70c25527802d80507a9134158 100644
--- a/tracing/tracing_project.py
+++ b/tracing/tracing_project.py
@@ -15,7 +15,7 @@ def _AddToPathIfNeeded(path):
def UpdateSysPathIfNeeded():
p = TracingProject()
_AddToPathIfNeeded(p.catapult_path)
- _AddToPathIfNeeded(p.tvcm_path)
+ _AddToPathIfNeeded(p.py_vulcanize_path)
_AddToPathIfNeeded(p.vinn_path)
_AddToPathIfNeeded(os.path.join(p.catapult_third_party_path, 'WebOb'))
@@ -60,13 +60,13 @@ class TracingProject():
extras_path = os.path.join(tracing_src_path, 'extras')
ui_extras_path = os.path.join(tracing_src_path, 'ui', 'extras')
-
catapult_third_party_path = os.path.abspath(os.path.join(
catapult_path, 'third_party'))
tracing_third_party_path = os.path.abspath(os.path.join(
tracing_root_path, 'third_party'))
- tvcm_path = os.path.abspath(os.path.join(tracing_third_party_path, 'tvcm'))
+ py_vulcanize_path = os.path.abspath(os.path.join(
+ catapult_path, 'third_party', 'py_vulcanize'))
vinn_path = os.path.abspath(os.path.join(catapult_third_party_path, 'vinn'))
jszip_path = os.path.abspath(os.path.join(tracing_third_party_path, 'jszip'))
@@ -83,9 +83,9 @@ class TracingProject():
skp_data_path = os.path.join(tracing_root_path, 'skp_data')
rjsmin_path = os.path.abspath(os.path.join(
- tracing_third_party_path, 'tvcm', 'third_party', 'rjsmin'))
+ py_vulcanize_path, 'third_party', 'rjsmin'))
rcssmin_path = os.path.abspath(os.path.join(
- tracing_third_party_path, 'tvcm', 'third_party', 'rcssmin'))
+ py_vulcanize_path, 'third_party', 'rcssmin'))
def __init__(self):
self.source_paths = []
@@ -98,7 +98,7 @@ class TracingProject():
self.source_paths.append(self.mocha_path)
def CreateVulcanizer(self):
- from tvcm import project as project_module
+ from py_vulcanize import project as project_module
return project_module.Project(self.source_paths)
def IsD8CompatibleFile(self, filename):
« third_party/py_vulcanize/README.chromium ('K') | « tracing/tracing_build/vulcanize_trace_viewer.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698