From 1281c3ccca87bd38b88cca87b64d813d9cd11c16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Draszik?= Date: Tue, 24 Sep 2024 11:35:29 +0100 Subject: [PATCH] ANDROID: vDSO tests need vdso_call.h now MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit 6eda706a535c ("selftests: vDSO: fix the way vDSO functions are called for powerpc") added vdso_call.h which the vDSO tests require now. Update BUILD.bazel to make it available in hermetic builds Fixes: 6eda706a535c ("selftests: vDSO: fix the way vDSO functions called for powerpc") Test: TH Change-Id: Iab1ecb006a9ab5e4abec246d58cf380b4f21f42a Signed-off-by: André Draszik --- BUILD.bazel | 1 + 1 file changed, 1 insertion(+) diff --git a/BUILD.bazel b/BUILD.bazel index f7cfe267ee9e..f7b6044e8c2a 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1402,6 +1402,7 @@ cc_library( srcs = ["tools/testing/selftests/vDSO/parse_vdso.c"], hdrs = [ "tools/testing/selftests/vDSO/parse_vdso.h", + "tools/testing/selftests/vDSO/vdso_call.h", "tools/testing/selftests/vDSO/vdso_config.h", ], copts = _KSELFTEST_COPTS,