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

Unified Diff: build/android/gyp/util/build_utils.py

Issue 1412793012: Fix Python imported modules depfile generation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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/gyp/util/build_utils.py
diff --git a/build/android/gyp/util/build_utils.py b/build/android/gyp/util/build_utils.py
index f69401bbb39f825981157dd125d45b63a0f67ad0..5aaf6f949c810c51c5867e8e35d60d6caaf9d4d7 100644
--- a/build/android/gyp/util/build_utils.py
+++ b/build/android/gyp/util/build_utils.py
@@ -338,9 +338,10 @@ def GetPythonDependencies():
if m is not None and hasattr(m, '__file__'))
abs_module_paths = map(os.path.abspath, module_paths)
+ abs_root = os.path.abspath(CHROMIUM_SRC)
agrieve 2015/10/30 00:11:45 I think it'd be even better to make CHROMIUM_SRC a
agrieve 2015/10/30 00:25:06 Actually - almost everywhere actually uses DIR_SOU
tsniatowski 2015/10/30 00:31:21 The problem is when someone goes and changes it ba
non_system_module_paths = [
- p for p in abs_module_paths if p.startswith(CHROMIUM_SRC)]
+ p for p in abs_module_paths if p.startswith(abs_root)]
def ConvertPycToPy(s):
if s.endswith('.pyc'):
return s[:-1]
« 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