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

Unified Diff: build/android/ant/apk-codegen.xml

Issue 13004007: Enable configuralbe mergemanifest.enabled again. It's reverted on recent refactoring (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/ant/apk-codegen.xml
diff --git a/build/android/ant/apk-codegen.xml b/build/android/ant/apk-codegen.xml
index 64ade7a87fcda82886e89d896455dd77ec6a81e7..e60d6ca163cbd89aa932fd2941d034a6263b325b 100644
--- a/build/android/ant/apk-codegen.xml
+++ b/build/android/ant/apk-codegen.xml
@@ -63,7 +63,11 @@
</path>
<!-- manifest merger default value -->
- <property name="manifestmerger.enabled" value="false" />
+ <condition property="manifestmerger.enabled"
+ value="false"
+ else="true">
+ <equals arg1="${LIBRARY_MANIFEST_PATHS}" arg2="" />
+ </condition>
<property name="resource.absolute.dir" value="${RESOURCE_DIR}"/>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698