aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml
diff options
context:
space:
mode:
authorGravatar Adam Michael <ajmichael@google.com>2017-09-21 15:00:07 -0400
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2017-10-05 00:18:35 +0200
commitb4ebfd724d33223ac78190be88c6f8704c249651 (patch)
tree7dcf4db51a9d5fad13ad17c69074b64e02228418 /third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml
parent74776b409214846aa3fe3a41a3447c6412dc046c (diff)
Add proguard 5.3.3 to third_party.
See https://github.com/bazelbuild/bazel/issues/3777 The Android SDK provides a very old proguard and will be removing it soon, so we need to bundle our own. Change-Id: I054c54130bef1befc8591598768184fe23f76161 RELNOTES: None
Diffstat (limited to 'third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml')
-rw-r--r--third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml b/third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml
new file mode 100644
index 0000000000..6df5789eb0
--- /dev/null
+++ b/third_party/java/proguard/proguard5.3.3/examples/ant/applications1.xml
@@ -0,0 +1,15 @@
+<!-- This Ant build file illustrates how to process applications,
+ by including a ProGuard-style configuration file.
+ Usage: ant -f applications1.xml -->
+
+<project name="Applications" default="obfuscate" basedir="../..">
+
+<target name="obfuscate">
+ <taskdef resource="proguard/ant/task.properties"
+ classpath="lib/proguard.jar" />
+
+ <proguard configuration="examples/applications.pro" />
+
+</target>
+
+</project>