Index: build/android/gyp/write_build_config.py |
diff --git a/build/android/gyp/write_build_config.py b/build/android/gyp/write_build_config.py |
index 0960f63f6448bb8e4a3bea302a46195230928a0d..e86f8c09bdef2bca051c4fc31479d2a068e6b8c7 100755 |
--- a/build/android/gyp/write_build_config.py |
+++ b/build/android/gyp/write_build_config.py |
@@ -423,6 +423,7 @@ |
config['proguard'] = {} |
proguard_config = config['proguard'] |
proguard_config['input_paths'] = [options.jar_path] + java_full_classpath |
+ proguard_config['tested_apk_info'] = '' |
# An instrumentation test apk should exclude the dex files that are in the apk |
# under test. |
@@ -443,6 +444,7 @@ |
if tested_apk_config['proguard_enabled']: |
assert proguard_enabled, ('proguard must be enabled for instrumentation' |
' apks if it\'s enabled for the tested apk') |
+ proguard_config['tested_apk_info'] = tested_apk_config['proguard_info'] |
# Dependencies for the final dex file of an apk or a 'deps_dex'. |
if options.type in ['android_apk', 'deps_dex']: |