diff options
author | 2022-09-14 09:08:06 +0000 | |
---|---|---|
committer | 2022-09-14 13:16:50 +0000 | |
commit | 6a777b856f45384bdf5e30ab5dec212cafd47b8c (patch) | |
tree | a693430302228e492a9efdcc74c502845bc5393e /sysprop/sysprop_test.go | |
parent | 2db49e32695470be11a3d12b10890aa39700dbb2 (diff) |
Revert "Delete SyspropMutator"
This reverts commit 2db49e32695470be11a3d12b10890aa39700dbb2.
Reason for revert: Break aosp build on git_tm-dev-plus-aosp and downstream branches
Change-Id: I0a86bf5e1e1f2ddf71308250f9110a9608ac2d8d
Bug: 246355583
Diffstat (limited to 'sysprop/sysprop_test.go')
-rw-r--r-- | sysprop/sysprop_test.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sysprop/sysprop_test.go b/sysprop/sysprop_test.go index 80b86e059..88ef61524 100644 --- a/sysprop/sysprop_test.go +++ b/sysprop/sysprop_test.go @@ -209,32 +209,32 @@ func TestSyspropLibrary(t *testing.T) { cc_library { name: "cc-client-platform", srcs: ["d.cpp"], - static_libs: ["libsysprop-platform"], + static_libs: ["sysprop-platform"], } cc_library_static { name: "cc-client-platform-static", srcs: ["d.cpp"], - whole_static_libs: ["libsysprop-platform"], + whole_static_libs: ["sysprop-platform"], } cc_library { name: "cc-client-product", srcs: ["d.cpp"], product_specific: true, - static_libs: ["libsysprop-platform-on-product", "libsysprop-vendor-on-product"], + static_libs: ["sysprop-platform-on-product", "sysprop-vendor-on-product"], } cc_library { name: "cc-client-vendor", srcs: ["d.cpp"], soc_specific: true, - static_libs: ["libsysprop-platform", "libsysprop-vendor"], + static_libs: ["sysprop-platform", "sysprop-vendor"], } cc_binary_host { name: "hostbin", - static_libs: ["libsysprop-platform"], + static_libs: ["sysprop-platform"], } `) |