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

Unified Diff: content/test/gpu/gpu_tests/__init__.py

Issue 1896853003: Remove useless path additions of old Telemetry location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | content/test/gpu/gpu_tests/path_util.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/gpu/gpu_tests/__init__.py
diff --git a/content/test/gpu/gpu_tests/__init__.py b/content/test/gpu/gpu_tests/__init__.py
index 4ce924f75633912f0e5d4c47adca45120327f98a..fe6cb71fdab83e48eb480aa7145c1f1d88cd14e1 100644
--- a/content/test/gpu/gpu_tests/__init__.py
+++ b/content/test/gpu/gpu_tests/__init__.py
@@ -1,27 +1,5 @@
# Copyright (c) 2012 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.
-"""A library for Chrome GPU test code."""
-import os
-import sys
-def Init():
- chromium_src_dir = os.path.abspath(os.path.join(
- os.path.dirname(__file__), '..', '..', '..', '..'))
-
- perf_path = os.path.join(chromium_src_dir, 'tools', 'perf')
- absolute_perf_path = os.path.abspath(perf_path)
-
- sys.path.append(absolute_perf_path)
- from chrome_telemetry_build import chromium_config
-
- telemetry_path = chromium_config.GetTelemetryDir()
- if telemetry_path not in sys.path:
- sys.path.append(telemetry_path)
-
- catapult_base_path = os.path.join(
- chromium_src_dir, 'third_party', 'catapult', 'catapult_base')
- if catapult_base_path not in sys.path:
- sys.path.append(catapult_base_path)
-
-Init()
+# Empty file so Python treats this directory as a package.
« no previous file with comments | « no previous file | content/test/gpu/gpu_tests/path_util.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698