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 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 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
806 sources = [ | 806 sources = [ |
807 invoker.input_apk_path, | 807 invoker.input_apk_path, |
808 ] | 808 ] |
809 inputs = [ | 809 inputs = [ |
810 invoker.keystore_path, | 810 invoker.keystore_path, |
811 ] | 811 ] |
812 outputs = [ | 812 outputs = [ |
813 depfile, | 813 depfile, |
814 invoker.output_apk_path, | 814 invoker.output_apk_path, |
815 ] | 815 ] |
| 816 data = [ |
| 817 invoker.output_apk_path, |
| 818 ] |
816 | 819 |
817 args = [ | 820 args = [ |
818 "--depfile", | 821 "--depfile", |
819 rebase_path(depfile, root_build_dir), | 822 rebase_path(depfile, root_build_dir), |
820 "--zipalign-path", | 823 "--zipalign-path", |
821 rebase_path(zipalign_path, root_build_dir), | 824 rebase_path(zipalign_path, root_build_dir), |
822 "--unsigned-apk-path", | 825 "--unsigned-apk-path", |
823 rebase_path(invoker.input_apk_path, root_build_dir), | 826 rebase_path(invoker.input_apk_path, root_build_dir), |
824 "--final-apk-path", | 827 "--final-apk-path", |
825 rebase_path(invoker.output_apk_path, root_build_dir), | 828 rebase_path(invoker.output_apk_path, root_build_dir), |
(...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2164 ] | 2167 ] |
2165 args = [ | 2168 args = [ |
2166 "--depfile", | 2169 "--depfile", |
2167 rebase_path(depfile, root_build_dir), | 2170 rebase_path(depfile, root_build_dir), |
2168 "--script-output-path", | 2171 "--script-output-path", |
2169 rebase_path(generated_script, root_build_dir), | 2172 rebase_path(generated_script, root_build_dir), |
2170 ] | 2173 ] |
2171 args += test_runner_args | 2174 args += test_runner_args |
2172 } | 2175 } |
2173 } | 2176 } |
OLD | NEW |