Commit c2303bea authored by thakis@chromium.org's avatar thakis@chromium.org

android: Stop calling md5sum for ant_obfuscate step.

All inputs except instr_stamp are passed in the command and instr_stamp
is a single fixed file, so this isn't necessary. No functionality change.

BUG=177552
R=cjhopman@chromium.org

Review URL: https://codereview.chromium.org/180033009

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255451 0039d316-1c4b-4281-b951-d872f2087c98
parent 4b0dae4d
...@@ -616,8 +616,8 @@ ...@@ -616,8 +616,8 @@
'<(DEPTH)/build/android/ant/create-test-jar.js', '<(DEPTH)/build/android/ant/create-test-jar.js',
'<(DEPTH)/build/android/gyp/util/build_utils.py', '<(DEPTH)/build/android/gyp/util/build_utils.py',
'<(DEPTH)/build/android/gyp/ant.py', '<(DEPTH)/build/android/gyp/ant.py',
'<(instr_stamp)',
'>@(proguard_flags_paths)', '>@(proguard_flags_paths)',
'<(instr_stamp)',
], ],
'outputs': [ 'outputs': [
# This lists obfuscate_stamp instead of obfuscated_jar_path because # This lists obfuscate_stamp instead of obfuscated_jar_path because
...@@ -649,11 +649,6 @@ ...@@ -649,11 +649,6 @@
'-Dbasedir=.', '-Dbasedir=.',
'-buildfile', '-buildfile',
'<(DEPTH)/build/android/ant/apk-obfuscate.xml', '<(DEPTH)/build/android/ant/apk-obfuscate.xml',
# Add list of inputs to the command line, so if inputs change
# (e.g. if a Java file is removed), the command will be re-run.
# TODO(newt): remove this once crbug.com/177552 is fixed in ninja.
'-DTHIS_IS_IGNORED=>!(echo \'>(_inputs)\' | md5sum)',
], ],
}, },
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment