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

Unified Diff: build/android/pylib/host_driven/test_server.py

Issue 59713002: Android: removes hardcoded out directory in test_server.py (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/host_driven/test_server.py
diff --git a/build/android/pylib/host_driven/test_server.py b/build/android/pylib/host_driven/test_server.py
index 23d6820c5610516138916139bd3b6986405dfec5..73f439f2f13edd9eed8def12001e13e6b297ca14 100644
--- a/build/android/pylib/host_driven/test_server.py
+++ b/build/android/pylib/host_driven/test_server.py
@@ -70,7 +70,7 @@ class TestServer(object):
# Make dirs into a list of absolute paths.
abs_dirs = [os.path.join(src_dir, d) for d in _PYTHONPATH_DIRS]
# Add the generated python files to the path
- abs_dirs.extend([os.path.join(src_dir, 'out', constants.GetBuildType(), d)
+ abs_dirs.extend([os.path.join(src_dir, constants.GetOutDirectory(), d)
for d in _GENERATED_PYTHONPATH_DIRS])
current_python_path = os.environ.get('PYTHONPATH')
extra_python_path = ':'.join(abs_dirs)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698