Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: build/config/android/rules.gni

Issue 1360233006: GN: Add missing deps for incremental apks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/rules.gni
diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
index 2c8c4d66b57f84966f5706bb1de77173fc59301b..e33b7a8d12b072fee212a7fd78b0b7c236430e35 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1451,7 +1451,8 @@ template("android_apk") {
}
if (_native_libs != []) {
- action("${_template_name}__prepare_native") {
+ _prepare_native_target_name = "${_template_name}__prepare_native"
+ action(_prepare_native_target_name) {
forward_variables_from(invoker,
[
"data_deps",
@@ -1539,7 +1540,10 @@ template("android_apk") {
":$process_resources_target",
":$final_dex_target_name",
]
- incremental_deps = _android_manifest_deps + [ ":$process_resources_target" ]
+ incremental_deps = _android_manifest_deps + [
+ ":$java_target",
pkotwicz 2015/09/24 21:31:53 I wonder whether we should add $java_target to dep
agrieve 2015/09/24 22:22:57 We shouldn't add it to deps, because it's not a di
+ ":$process_resources_target",
+ ]
if (defined(invoker.deps)) {
deps += invoker.deps
incremental_deps += invoker.deps
@@ -1558,7 +1562,8 @@ template("android_apk") {
if (_native_libs != [] && !_create_abi_split) {
native_libs_dir = _native_libs_dir
- deps += [ ":${_template_name}__prepare_native" ]
+ deps += [ ":$_prepare_native_target_name" ]
+ incremental_deps += [ ":$_prepare_native_target_name" ]
}
}
@@ -1594,7 +1599,7 @@ template("android_apk") {
native_libs_dir = _native_libs_dir
deps = [
- ":${_template_name}__prepare_native",
+ ":${_prepare_native_target_name}",
":${_manifest_rule}",
]
incremental_deps = deps
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698