From a3a78a688d31856b81465787d5cc80f27a106a66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Kosi=C5=84ski?= Date: Sat, 4 Mar 2023 00:58:52 +0000 Subject: [PATCH] Do not include internal GTest header. Only the headers gtest.h and gtest-spi.h are public. This inclusion is causing a build break when upgrading googletest to version 1.13.0. Bug: 271622675 Test: local build, presubmit Change-Id: I698e4d4464c131e9dad73a23a6f65908a07e9f60 --- audio/aidl/vts/EffectHelper.h | 1 + audio/aidl/vts/TestUtils.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/audio/aidl/vts/EffectHelper.h b/audio/aidl/vts/EffectHelper.h index 5ed8e1f22b..5e03d6715b 100644 --- a/audio/aidl/vts/EffectHelper.h +++ b/audio/aidl/vts/EffectHelper.h @@ -28,6 +28,7 @@ #include #include #include +#include #include #include "AudioHalBinderServiceUtil.h" diff --git a/audio/aidl/vts/TestUtils.h b/audio/aidl/vts/TestUtils.h index 4c1d42c762..72ca56f228 100644 --- a/audio/aidl/vts/TestUtils.h +++ b/audio/aidl/vts/TestUtils.h @@ -21,7 +21,7 @@ #include #include -#include +#include namespace android::hardware::audio::common::testing {