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

Unified Diff: build/print_python_deps.py

Issue 2840193003: [Android] Fix stack symbolization when packed relocations are on. (Closed)
Patch Set: tedchoc comment Created 3 years, 8 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
Index: build/print_python_deps.py
diff --git a/build/print_python_deps.py b/build/print_python_deps.py
index 50a1f08f4bf6e87a780ac3a173b48c3e41c7705d..92c75a535eb280d2940a54191ae39f8c020057b3 100755
--- a/build/print_python_deps.py
+++ b/build/print_python_deps.py
@@ -38,7 +38,8 @@ def _ComputePythonDependencies():
if not path.startswith(_SRC_ROOT):
continue
- if path.endswith('.pyc'):
+ if (path.endswith('.pyc')
+ or (path.endswith('c') and not os.path.splitext(path)[1])):
path = path[:-1]
src_paths.add(path)
« no previous file with comments | « build/config/android/rules.gni ('k') | build/secondary/third_party/android_platform/development/scripts/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698