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

Unified Diff: build/android/java_cpp_template.gypi

Issue 14772036: Let Android port access properly sized images (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup Created 7 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 | « no previous file | chrome/android/java/ResourceId.template » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/java_cpp_template.gypi
diff --git a/build/android/java_cpp_template.gypi b/build/android/java_cpp_template.gypi
index 6233e6aef9180f8a5ff75571f77ab62375fd6945..fe4238af84fd700979748a2d62bba311d4fc5435 100644
--- a/build/android/java_cpp_template.gypi
+++ b/build/android/java_cpp_template.gypi
@@ -34,13 +34,18 @@
'include_path%': '<(DEPTH)',
'output_dir': '<(SHARED_INTERMEDIATE_DIR)/templates/<(package_name)',
},
- # Ensure that the output directory is used in the class path
- # when building targets that depend on this one.
'direct_dependent_settings': {
'variables': {
+ # Ensure that the output directory is used in the class path
+ # when building targets that depend on this one.
'generated_src_dirs': [
'<(output_dir)/',
],
+ # Ensure dependents are rebuilt when sources for this rule change.
+ 'additional_input_paths': [
+ '<@(_sources)',
+ '<@(template_deps)',
+ ],
},
},
# Define a single rule that will be apply to each .template file
« no previous file with comments | « no previous file | chrome/android/java/ResourceId.template » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698