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 af58ddc2656548612a3fdf9c607c2db06c5a1b5a..02560c91293845fa181332298fe333e9e86baf94 100644 |
--- a/build/android/pylib/host_driven/test_server.py |
+++ b/build/android/pylib/host_driven/test_server.py |
@@ -23,6 +23,7 @@ import time |
import urllib2 |
from pylib import constants |
+from pylib.constants import host_paths |
# NOTE: when adding or modifying these lines, omit any leading slashes! |
# Otherwise os.path.join() will (correctly) treat them as absolute paths |
@@ -87,7 +88,7 @@ class TestServer(object): |
self.host = _TEST_SERVER_HOST |
self.port = test_server_port + shard_index |
- src_dir = constants.DIR_SOURCE_ROOT |
+ src_dir = host_paths.DIR_SOURCE_ROOT |
# 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 |