| Index: build/config/android/rules.gni
|
| diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
|
| index dc3e86cbe94c27ea2a67e76a39aa51d16b7a44db..161bcc30adc0f7d95960a11bb1b7012d2347e8ff 100644
|
| --- a/build/config/android/rules.gni
|
| +++ b/build/config/android/rules.gni
|
| @@ -1101,6 +1101,9 @@ template("java_prebuilt") {
|
| if (defined(invoker.deps)) {
|
| deps = invoker.deps
|
| }
|
| + if (defined(invoker.data_deps)) {
|
| + data_deps = invoker.data_deps
|
| + }
|
| if (defined(invoker.proguard_config)) {
|
| proguard_config = invoker.proguard_config
|
| }
|
| @@ -1278,6 +1281,9 @@ template("android_java_prebuilt") {
|
| if (defined(invoker.deps)) {
|
| deps = invoker.deps
|
| }
|
| + if (defined(invoker.data_deps)) {
|
| + data_deps = invoker.data_deps
|
| + }
|
| if (defined(invoker.proguard_config)) {
|
| proguard_config = invoker.proguard_config
|
| }
|
|
|