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

Unified Diff: build/java_apk.gypi

Issue 13432002: Add input content checking to some build scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: build/java_apk.gypi
diff --git a/build/java_apk.gypi b/build/java_apk.gypi
index 360b107409e4a0609e406fc56b5619edcacd66c5..666c2831affd464a812b254df680ad9e3adc3d47 100644
--- a/build/java_apk.gypi
+++ b/build/java_apk.gypi
@@ -230,6 +230,7 @@
'message': 'Pushing libraries to device for <(_target_name)',
'inputs': [
'<(DEPTH)/build/android/pylib/build_utils.py',
+ '<(DEPTH)/build/android/gyp/util/md5_check.py',
Yaron 2013/04/03 22:05:35 I take it you couldn't find a more generic way to
cjhopman 2013/04/03 22:17:56 Once build_utils.py is moved, I plan to introduce
'<(DEPTH)/build/android/gyp/push_libraries.py',
'<(strip_stamp)',
],
@@ -377,7 +378,7 @@
},
'inputs': [
'<(DEPTH)/build/android/pylib/build_utils.py',
- '<(DEPTH)/build/android/javac.py',
+ '<(DEPTH)/build/android/gyp/javac.py',
# If there is a separate find for additional_src_dirs, it will find the
# wrong .java files when additional_src_dirs is empty.
'>!@(find >(java_in_dir) >(additional_src_dirs) -name "*.java")',
@@ -389,7 +390,7 @@
'<(compile_stamp)',
],
'action': [
- 'python', '<(DEPTH)/build/android/javac.py',
+ 'python', '<(DEPTH)/build/android/gyp/javac.py',
'--output-dir=<(classes_dir)',
'--classpath=>(input_jars_paths) <(android_sdk_jar)',
'--src-dirs=>(all_src_dirs)',
@@ -406,14 +407,15 @@
'message': 'Creating <(_target_name) jar',
'inputs': [
'<(DEPTH)/build/android/pylib/build_utils.py',
- '<(DEPTH)/build/android/jar.py',
+ '<(DEPTH)/build/android/gyp/util/md5_check.py',
+ '<(DEPTH)/build/android/gyp/jar.py',
'<(compile_stamp)',
],
'outputs': [
'<(jar_stamp)',
],
'action': [
- 'python', '<(DEPTH)/build/android/jar.py',
+ 'python', '<(DEPTH)/build/android/gyp/jar.py',
'--classes-dir=<(classes_dir)',
'--jar-path=<(jar_path)',
'--excluded-classes=<(jar_excluded_classes)',
@@ -485,7 +487,8 @@
},
'inputs': [
'<(DEPTH)/build/android/pylib/build_utils.py',
- '<(DEPTH)/build/android/dex.py',
+ '<(DEPTH)/build/android/gyp/util/md5_check.py',
+ '<(DEPTH)/build/android/gyp/dex.py',
'<(compile_stamp)',
'>@(dex_inputs)',
],
@@ -493,7 +496,7 @@
'<(dex_path)',
],
'action': [
- 'python', '<(DEPTH)/build/android/dex.py',
+ 'python', '<(DEPTH)/build/android/gyp/dex.py',
'--dex-path=<(dex_path)',
'--android-sdk-root=<(android_sdk_root)',
« build/android/gyp/javac.py ('K') | « build/java.gypi ('k') | build/java_prebuilt.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698