diff options
author | 2020-04-28 17:13:26 +0000 | |
---|---|---|
committer | 2020-04-28 17:13:26 +0000 | |
commit | c869812b047f75d2eccf3f40638ae44338bc1ea5 (patch) | |
tree | 874445727faaa500189d89e0af876b0425a8a23f /apex/apex_test.go | |
parent | a6c19f792d578a705822fb6f6ca391142bce5388 (diff) | |
parent | 69aeba99822d891c79bebdafd5101705af280c8c (diff) |
Merge "runtime_resource_overlay can be included in APEXes"
Diffstat (limited to 'apex/apex_test.go')
-rw-r--r-- | apex/apex_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apex/apex_test.go b/apex/apex_test.go index c4ab0be64..dea7a087e 100644 --- a/apex/apex_test.go +++ b/apex/apex_test.go @@ -521,6 +521,7 @@ func TestDefaults(t *testing.T) { native_shared_libs: ["mylib"], java_libs: ["myjar"], apps: ["AppFoo"], + rros: ["rro"], } prebuilt_etc { @@ -561,12 +562,19 @@ func TestDefaults(t *testing.T) { system_modules: "none", apex_available: [ "myapex" ], } + + runtime_resource_overlay { + name: "rro", + theme: "blue", + } + `) ensureExactContents(t, ctx, "myapex", "android_common_myapex_image", []string{ "etc/myetc", "javalib/myjar.jar", "lib64/mylib.so", "app/AppFoo/AppFoo.apk", + "overlay/blue/rro.apk", }) } |