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

Unified Diff: build/android/gn/create_incremental_install_script.py

Issue 1313513006: Fix sys.path of create_incremental_install_script.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gn/create_incremental_install_script.py
diff --git a/build/android/gn/create_incremental_install_script.py b/build/android/gn/create_incremental_install_script.py
index d3aa16b949cf2c2ddbb84749887dca2bf183f858..f12f9e5dc3d594156a57ccd127efc52b3e4e4f16 100755
--- a/build/android/gn/create_incremental_install_script.py
+++ b/build/android/gn/create_incremental_install_script.py
@@ -11,7 +11,8 @@ import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir))
-from gyp.util import build_utils
+sys.path.append(os.path.join(os.path.dirname(__file__), os.pardir, 'gyp'))
+from util import build_utils
from pylib import constants
« 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