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

Side by Side Diff: build/host_jar.gypi

Issue 1286613002: Update errorprone to fix java 8 issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed jbudorick's nits. Created 5 years, 4 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/internal_rules.gni ('k') | build/java.gypi » ('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 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 # This file is meant to be included into a target to provide a rule to build 5 # This file is meant to be included into a target to provide a rule to build
6 # a JAR file for use on a host in a consistent manner. If a main class is 6 # a JAR file for use on a host in a consistent manner. If a main class is
7 # specified, this file will also generate an executable to run the jar in the 7 # specified, this file will also generate an executable to run the jar in the
8 # output folder's /bin/ directory. 8 # output folder's /bin/ directory.
9 # 9 #
10 # To use this, create a gyp target with the following form: 10 # To use this, create a gyp target with the following form:
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 '--classpath=>(input_jars_paths)', 131 '--classpath=>(input_jars_paths)',
132 '--jar-path=<(jar_path)', 132 '--jar-path=<(jar_path)',
133 '--output=<(output)', 133 '--output=<(output)',
134 '--main-class=>(main_class)', 134 '--main-class=>(main_class)',
135 ] 135 ]
136 } 136 }
137 ] 137 ]
138 }], 138 }],
139 ['enable_errorprone == 1', { 139 ['enable_errorprone == 1', {
140 'dependencies': [ 140 'dependencies': [
141 '<(DEPTH)/third_party/errorprone/errorprone.gyp:chromium_errorprone', 141 '<(DEPTH)/third_party/errorprone/errorprone.gyp:require_errorprone',
142 ], 142 ],
143 }], 143 }],
144 ] 144 ]
145 } 145 }
146 146
OLDNEW
« no previous file with comments | « build/config/android/internal_rules.gni ('k') | build/java.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698