Fix NDK gtest name.
Test: make checkbuild
Bug: 73087488
Change-Id: I048da296d8000cd1c86a5174ff7864aed271f00c
diff --git a/cc/test.go b/cc/test.go
index 2fb3a35..b8e9cdb 100644
--- a/cc/test.go
+++ b/cc/test.go
@@ -158,12 +158,7 @@
func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps {
if test.gtest() {
if ctx.useSdk() && ctx.Device() {
- switch ctx.selectedStl() {
- case "ndk_libc++_shared", "ndk_libc++_static":
- deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_libcxx", "libgtest_ndk_libcxx")
- default:
- deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk", "libgtest_ndk")
- }
+ deps.StaticLibs = append(deps.StaticLibs, "libgtest_main_ndk_c++", "libgtest_ndk_c++")
} else {
deps.StaticLibs = append(deps.StaticLibs, "libgtest_main", "libgtest")
}