OLD | NEW |
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 Loading... |
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 |
OLD | NEW |