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

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

Issue 1568583005: Add proguard_verbose GN arg (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/config/android/config.gni ('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 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/zip.gni") 7 import("//build/config/zip.gni")
8 import("//third_party/ijar/ijar.gni") 8 import("//third_party/ijar/ijar.gni")
9 9
10 assert(is_android) 10 assert(is_android)
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 args = [ 114 args = [
115 "--depfile", 115 "--depfile",
116 rebase_path(depfile, root_build_dir), 116 rebase_path(depfile, root_build_dir),
117 "--proguard-path", 117 "--proguard-path",
118 rebase_path(_proguard_jar_path, root_build_dir), 118 rebase_path(_proguard_jar_path, root_build_dir),
119 "--output-path", 119 "--output-path",
120 rebase_path(_output_jar_path, root_build_dir), 120 rebase_path(_output_jar_path, root_build_dir),
121 "--classpath", 121 "--classpath",
122 _rebased_android_sdk_jar, 122 _rebased_android_sdk_jar,
123 ] 123 ]
124 if (proguard_verbose) {
125 args += [ "--verbose" ]
126 }
124 if (defined(invoker.args)) { 127 if (defined(invoker.args)) {
125 args += invoker.args 128 args += invoker.args
126 } 129 }
127 } 130 }
128 } 131 }
129 132
130 template("findbugs") { 133 template("findbugs") {
131 jar_path = invoker.jar_path 134 jar_path = invoker.jar_path
132 135
133 build_config = invoker.build_config 136 build_config = invoker.build_config
(...skipping 1929 matching lines...) Expand 10 before | Expand all | Expand 10 after
2063 ] 2066 ]
2064 args = [ 2067 args = [
2065 "--depfile", 2068 "--depfile",
2066 rebase_path(depfile, root_build_dir), 2069 rebase_path(depfile, root_build_dir),
2067 "--script-output-path", 2070 "--script-output-path",
2068 rebase_path(generated_script, root_build_dir), 2071 rebase_path(generated_script, root_build_dir),
2069 ] 2072 ]
2070 args += test_runner_args 2073 args += test_runner_args
2071 } 2074 }
2072 } 2075 }
OLDNEW
« no previous file with comments | « build/config/android/config.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698