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

Side by Side Diff: build/java_apk.gypi

Issue 1103013002: Refactor proguard scripts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « build/android/gyp/util/proguard_util.py ('k') | tools/telemetry/telemetry/TELEMETRY_DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This file is meant to be included into a target to provide a rule 5 # This file is meant to be included into a target to provide a rule
6 # to build Android APKs in a consistent manner. 6 # to build Android APKs in a consistent manner.
7 # 7 #
8 # To use this, create a gyp target with the following form: 8 # To use this, create a gyp target with the following form:
9 # { 9 # {
10 # 'target_name': 'my_package_apk', 10 # 'target_name': 'my_package_apk',
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
799 799
800 '--configuration-name', '<(CONFIGURATION_NAME)', 800 '--configuration-name', '<(CONFIGURATION_NAME)',
801 801
802 '--android-sdk', '<(android_sdk)', 802 '--android-sdk', '<(android_sdk)',
803 '--android-sdk-tools', '<(android_sdk_tools)', 803 '--android-sdk-tools', '<(android_sdk_tools)',
804 '--android-sdk-jar', '<(android_sdk_jar)', 804 '--android-sdk-jar', '<(android_sdk_jar)',
805 805
806 '--input-jars-paths=>(proguard_input_jar_paths)', 806 '--input-jars-paths=>(proguard_input_jar_paths)',
807 '--proguard-configs=>(proguard_flags_paths)', 807 '--proguard-configs=>(proguard_flags_paths)',
808 808
809
810 '--test-jar-path', '<(test_jar_path)', 809 '--test-jar-path', '<(test_jar_path)',
811 '--obfuscated-jar-path', '<(obfuscated_jar_path)', 810 '--obfuscated-jar-path', '<(obfuscated_jar_path)',
812 811
813 '--proguard-jar-path', '<(android_sdk_root)/tools/proguard/lib/proguard. jar', 812 '--proguard-jar-path', '<(android_sdk_root)/tools/proguard/lib/proguard. jar',
814 813
815 '--stamp', '<(obfuscate_stamp)', 814 '--stamp', '<(obfuscate_stamp)',
816 815
817 '>@(additional_obfuscate_options)', 816 '>@(additional_obfuscate_options)',
818 ], 817 ],
819 }, 818 },
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
954 '-DEMMA_INSTRUMENT=<(emma_instrument)', 953 '-DEMMA_INSTRUMENT=<(emma_instrument)',
955 '-DEMMA_DEVICE_JAR=<(emma_device_jar)', 954 '-DEMMA_DEVICE_JAR=<(emma_device_jar)',
956 955
957 '-Dbasedir=.', 956 '-Dbasedir=.',
958 '-buildfile', 957 '-buildfile',
959 '<(DEPTH)/build/android/ant/apk-package.xml', 958 '<(DEPTH)/build/android/ant/apk-package.xml',
960 ] 959 ]
961 }, 960 },
962 ], 961 ],
963 } 962 }
OLDNEW
« no previous file with comments | « build/android/gyp/util/proguard_util.py ('k') | tools/telemetry/telemetry/TELEMETRY_DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698