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

Unified Diff: build/android/resource_sizes.py

Issue 2896583003: Fix markupsafe pydeps import issue. (Closed)
Patch Set: Fix markupsafe pydeps import issue. Created 3 years, 7 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 | « build/android/pylib/local/device/local_device_instrumentation_test_run.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/resource_sizes.py
diff --git a/build/android/resource_sizes.py b/build/android/resource_sizes.py
index c11588413b6dd71773c1a794302f7a746f0765a7..0e0e51eeaed8501b6316258177401924095baa1a 100755
--- a/build/android/resource_sizes.py
+++ b/build/android/resource_sizes.py
@@ -41,13 +41,13 @@ _APK_PATCH_SIZE_ESTIMATOR_PATH = os.path.join(
# Prepend the grit module from the source tree so it takes precedence over other
# grit versions that might present in the search path.
-with host_paths.SysPath(_GRIT_PATH, 1):
+with host_paths.SysPath(_GRIT_PATH, 0):
from grit.format import data_pack # pylint: disable=import-error
with host_paths.SysPath(host_paths.BUILD_COMMON_PATH):
import perf_tests_results_helper # pylint: disable=import-error
-with host_paths.SysPath(_BUILD_UTILS_PATH, 1):
+with host_paths.SysPath(_BUILD_UTILS_PATH, 0):
from util import build_utils # pylint: disable=import-error
with host_paths.SysPath(_APK_PATCH_SIZE_ESTIMATOR_PATH):
« no previous file with comments | « build/android/pylib/local/device/local_device_instrumentation_test_run.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698