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 'target_name': 'rezip_apk_jar', | 10 'target_name': 'rezip_apk_jar', |
10 'type': 'none', | 11 'type': 'none', |
11 'variables': { | 12 'variables': { |
12 'java_in_dir': 'rezip', | 13 'java_in_dir': 'rezip', |
13 'compile_stamp': '<(SHARED_INTERMEDIATE_DIR)/<(_target_name)/compile.sta
mp', | 14 'compile_stamp': '<(SHARED_INTERMEDIATE_DIR)/<(_target_name)/compile.sta
mp', |
14 'javac_jar_path': '<(PRODUCT_DIR)/lib.java/rezip_apk.jar', | 15 'javac_jar_path': '<(PRODUCT_DIR)/lib.java/rezip_apk.jar', |
15 }, | 16 }, |
16 'actions': [ | 17 'actions': [ |
17 { | 18 { |
18 'action_name': 'javac_<(_target_name)', | 19 'action_name': 'javac_<(_target_name)', |
(...skipping 16 matching lines...) Expand all Loading... |
35 '--classes-dir=<(SHARED_INTERMEDIATE_DIR)/<(_target_name)', | 36 '--classes-dir=<(SHARED_INTERMEDIATE_DIR)/<(_target_name)', |
36 '--jar-path=<(javac_jar_path)', | 37 '--jar-path=<(javac_jar_path)', |
37 '--stamp=<(compile_stamp)', | 38 '--stamp=<(compile_stamp)', |
38 '>@(java_sources)', | 39 '>@(java_sources)', |
39 ] | 40 ] |
40 }, | 41 }, |
41 ], | 42 ], |
42 } | 43 } |
43 ], | 44 ], |
44 } | 45 } |
OLD | NEW |