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

Unified Diff: build/android/resource_sizes.py

Issue 2761883002: Fix resource_sizes.py breaking if CWD!=src (Closed)
Patch Set: Created 3 years, 9 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/BUILD.gn ('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 976f888a6e877c4133088e783eb1f9f33d4f87f7..a0ff3f04dc0e1d7fea94f2db6a9b89a7686ac2a5 100755
--- a/build/android/resource_sizes.py
+++ b/build/android/resource_sizes.py
@@ -723,7 +723,8 @@ def main():
constants.CheckOutputDirectory()
devil_chromium.Initialize()
build_vars = _ReadBuildVars(constants.GetOutDirectory())
- tools_prefix = build_vars['android_tool_prefix']
+ tools_prefix = os.path.join(constants.GetOutDirectory(),
+ build_vars['android_tool_prefix'])
else:
tools_prefix = ''
« no previous file with comments | « build/android/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698