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

Side by Side Diff: build/config/android/internal_rules.gni

Issue 2626323002: Android: Write all proguard flags to out.jar.flags file (Closed)
Patch Set: Created 3 years, 11 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') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # Do not add any imports to non-//build directories here. 5 # Do not add any imports to non-//build directories here.
6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in. 6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in.
7 import("//build_overrides/build.gni") 7 import("//build_overrides/build.gni")
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/dcheck_always_on.gni") 9 import("//build/config/dcheck_always_on.gni")
10 import("//build/config/sanitizers/sanitizers.gni") 10 import("//build/config/sanitizers/sanitizers.gni")
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 } else { 759 } else {
760 inputs += [ android_sdk_jar ] 760 inputs += [ android_sdk_jar ]
761 _rebased_android_sdk_jar = rebased_android_sdk_jar 761 _rebased_android_sdk_jar = rebased_android_sdk_jar
762 } 762 }
763 if (defined(invoker.inputs)) { 763 if (defined(invoker.inputs)) {
764 inputs += invoker.inputs 764 inputs += invoker.inputs
765 } 765 }
766 depfile = "${target_gen_dir}/${target_name}.d" 766 depfile = "${target_gen_dir}/${target_name}.d"
767 outputs = [ 767 outputs = [
768 _output_jar_path, 768 _output_jar_path,
769 "$_output_jar_path.flags",
770 "$_output_jar_path.mapping",
769 "$_output_jar_path.seeds", 771 "$_output_jar_path.seeds",
770 "$_output_jar_path.mapping",
771 "$_output_jar_path.usage", 772 "$_output_jar_path.usage",
772 ] 773 ]
773 args = [ 774 args = [
774 "--depfile", 775 "--depfile",
775 rebase_path(depfile, root_build_dir), 776 rebase_path(depfile, root_build_dir),
776 "--proguard-path", 777 "--proguard-path",
777 rebase_path(_proguard_jar_path, root_build_dir), 778 rebase_path(_proguard_jar_path, root_build_dir),
778 "--output-path", 779 "--output-path",
779 rebase_path(_output_jar_path, root_build_dir), 780 rebase_path(_output_jar_path, root_build_dir),
780 "--classpath", 781 "--classpath",
(...skipping 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after
2811 rebase_path(root_build_dir, root_build_dir), 2812 rebase_path(root_build_dir, root_build_dir),
2812 "--packed-libraries-dir", 2813 "--packed-libraries-dir",
2813 rebase_path(_packed_libraries_dir, root_build_dir), 2814 rebase_path(_packed_libraries_dir, root_build_dir),
2814 "--libraries=${invoker.libraries_filearg}", 2815 "--libraries=${invoker.libraries_filearg}",
2815 "--filelistjson", 2816 "--filelistjson",
2816 rebase_path(invoker.file_list_json, root_build_dir), 2817 rebase_path(invoker.file_list_json, root_build_dir),
2817 ] 2818 ]
2818 } 2819 }
2819 } 2820 }
2820 } 2821 }
OLDNEW
« no previous file with comments | « build/android/gyp/util/proguard_util.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698