| 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 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1093 args += [ "--non-constant-id" ] | 1093 args += [ "--non-constant-id" ] |
| 1094 } | 1094 } |
| 1095 | 1095 |
| 1096 if (defined(invoker.custom_package)) { | 1096 if (defined(invoker.custom_package)) { |
| 1097 args += [ | 1097 args += [ |
| 1098 "--custom-package", | 1098 "--custom-package", |
| 1099 invoker.custom_package, | 1099 invoker.custom_package, |
| 1100 ] | 1100 ] |
| 1101 } | 1101 } |
| 1102 | 1102 |
| 1103 if (defined(invoker.v14_verify_only) && invoker.v14_verify_only) { | |
| 1104 args += [ "--v14-verify-only" ] | |
| 1105 } | |
| 1106 | |
| 1107 if (defined(invoker.v14_skip) && invoker.v14_skip) { | 1103 if (defined(invoker.v14_skip) && invoker.v14_skip) { |
| 1108 args += [ "--v14-skip" ] | 1104 args += [ "--v14-skip" ] |
| 1109 } | 1105 } |
| 1110 | 1106 |
| 1111 if (defined(invoker.shared_resources) && invoker.shared_resources) { | 1107 if (defined(invoker.shared_resources) && invoker.shared_resources) { |
| 1112 args += [ "--shared-resources" ] | 1108 args += [ "--shared-resources" ] |
| 1113 } | 1109 } |
| 1114 | 1110 |
| 1115 if (defined(invoker.include_all_resources) && | 1111 if (defined(invoker.include_all_resources) && |
| 1116 invoker.include_all_resources) { | 1112 invoker.include_all_resources) { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1248 script = "//build/android/gyp/generate_split_manifest.py" | 1244 script = "//build/android/gyp/generate_split_manifest.py" |
| 1249 outputs = [ | 1245 outputs = [ |
| 1250 depfile, | 1246 depfile, |
| 1251 invoker.out_manifest, | 1247 invoker.out_manifest, |
| 1252 ] | 1248 ] |
| 1253 inputs = [ | 1249 inputs = [ |
| 1254 invoker.main_manifest, | 1250 invoker.main_manifest, |
| 1255 ] | 1251 ] |
| 1256 } | 1252 } |
| 1257 } | 1253 } |
| OLD | NEW |