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

Unified Diff: build/android/gyp/process_resources.py

Issue 1967153002: [Android] Run process_resources on aapt or sdk jar change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/gyp/jar.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/process_resources.py
diff --git a/build/android/gyp/process_resources.py b/build/android/gyp/process_resources.py
index 375cfdb913f2153a704a77006d2003e793f8b2a1..f8971aa9d2a3da428846b907aa90ec4a55df6e4e 100755
--- a/build/android/gyp/process_resources.py
+++ b/build/android/gyp/process_resources.py
@@ -463,8 +463,6 @@ def main(args):
# List python deps in input_strings rather than input_paths since the contents
# of them does not change what gets written to the depsfile.
input_strings = options.extra_res_packages + [
- options.aapt_path,
- options.android_sdk_jar,
options.app_as_shared_lib,
options.custom_package,
options.include_all_resources,
@@ -473,7 +471,11 @@ def main(args):
options.v14_skip,
]
- input_paths = [ options.android_manifest ]
+ input_paths = [
+ options.aapt_path,
+ options.android_manifest,
+ options.android_sdk_jar,
+ ]
input_paths.extend(options.dependencies_res_zips)
input_paths.extend(p for p in options.extra_r_text_files if os.path.exists(p))
« no previous file with comments | « build/android/gyp/jar.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698