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 | 6 |
7 assert(is_android) | 7 assert(is_android) |
8 | 8 |
9 rebased_android_sdk = rebase_path(android_sdk, root_build_dir) | 9 rebased_android_sdk = rebase_path(android_sdk, root_build_dir) |
10 rebased_android_sdk_root = rebase_path(android_sdk_root, root_build_dir) | 10 rebased_android_sdk_root = rebase_path(android_sdk_root, root_build_dir) |
(...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1073 args += [ | 1073 args += [ |
1074 "--custom-package", | 1074 "--custom-package", |
1075 invoker.custom_package, | 1075 invoker.custom_package, |
1076 ] | 1076 ] |
1077 } | 1077 } |
1078 | 1078 |
1079 if (defined(invoker.v14_verify_only) && invoker.v14_verify_only) { | 1079 if (defined(invoker.v14_verify_only) && invoker.v14_verify_only) { |
1080 args += [ "--v14-verify-only" ] | 1080 args += [ "--v14-verify-only" ] |
1081 } | 1081 } |
1082 | 1082 |
| 1083 if (defined(invoker.v14_skip) && invoker.v14_skip) { |
| 1084 args += [ "--v14-skip" ] |
| 1085 } |
| 1086 |
1083 if (defined(invoker.shared_resources) && invoker.shared_resources) { | 1087 if (defined(invoker.shared_resources) && invoker.shared_resources) { |
1084 args += [ "--shared-resources" ] | 1088 args += [ "--shared-resources" ] |
1085 } | 1089 } |
1086 | 1090 |
1087 if (defined(invoker.include_all_resources) && | 1091 if (defined(invoker.include_all_resources) && |
1088 invoker.include_all_resources) { | 1092 invoker.include_all_resources) { |
1089 args += [ "--include-all-resources" ] | 1093 args += [ "--include-all-resources" ] |
1090 } | 1094 } |
1091 | 1095 |
1092 if (defined(invoker.all_resources_zip_path)) { | 1096 if (defined(invoker.all_resources_zip_path)) { |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1220 script = "//build/android/gyp/generate_split_manifest.py" | 1224 script = "//build/android/gyp/generate_split_manifest.py" |
1221 outputs = [ | 1225 outputs = [ |
1222 depfile, | 1226 depfile, |
1223 invoker.out_manifest, | 1227 invoker.out_manifest, |
1224 ] | 1228 ] |
1225 inputs = [ | 1229 inputs = [ |
1226 invoker.main_manifest, | 1230 invoker.main_manifest, |
1227 ] | 1231 ] |
1228 } | 1232 } |
1229 } | 1233 } |
OLD | NEW |