Chromium Code Reviews| 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 # Build the rezip build tool. | 5 # Build the rezip build tool. |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 # GN: //build/android/rezip:rezip | 9 # GN: //build/android/rezip:rezip |
| 10 'target_name': 'rezip_apk_jar', | 10 'target_name': 'rezip_apk_jar', |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 29 'outputs': [ | 29 'outputs': [ |
| 30 '<(compile_stamp)', | 30 '<(compile_stamp)', |
| 31 '<(javac_jar_path)', | 31 '<(javac_jar_path)', |
| 32 ], | 32 ], |
| 33 'action': [ | 33 'action': [ |
| 34 'python', '<(DEPTH)/build/android/gyp/javac.py', | 34 'python', '<(DEPTH)/build/android/gyp/javac.py', |
| 35 '--classpath=', | 35 '--classpath=', |
| 36 '--classes-dir=<(SHARED_INTERMEDIATE_DIR)/<(_target_name)', | 36 '--classes-dir=<(SHARED_INTERMEDIATE_DIR)/<(_target_name)', |
| 37 '--jar-path=<(javac_jar_path)', | 37 '--jar-path=<(javac_jar_path)', |
| 38 '--stamp=<(compile_stamp)', | 38 '--stamp=<(compile_stamp)', |
| 39 '--disable-errorprone', | |
|
jbudorick
2015/05/07 18:49:26
Yeah, I'm definitely not a fan of default-on.
raywilliams_chromium
2015/05/11 19:52:25
Done.
raywilliams_chromium
2015/05/11 19:52:25
I'll change it in the next patch set.
(Actually,
| |
| 39 '>@(java_sources)', | 40 '>@(java_sources)', |
| 40 ] | 41 ] |
| 41 }, | 42 }, |
| 42 ], | 43 ], |
| 43 } | 44 } |
| 44 ], | 45 ], |
| 45 } | 46 } |
| OLD | NEW |