From c4abc9de3539a86daf38e8ea200065e36ec364d0 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Tue, 18 Jul 2023 20:53:58 +0000 Subject: [PATCH] libhardware: tests/tools to vendor Since these are vendor interfaces, and we are preventing system tools from using these. Bug: 37280010 Test: build Change-Id: I9ffcb4db015de498e1935c96a2866d26b3c936c4 --- modules/radio/Android.bp | 1 + tests/hardware/Android.bp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/modules/radio/Android.bp b/modules/radio/Android.bp index 7240869f..3d9ddef1 100644 --- a/modules/radio/Android.bp +++ b/modules/radio/Android.bp @@ -43,6 +43,7 @@ cc_library_shared { // Stub radio tool that can be run in native. cc_binary { name: "radio_hal_tool", + vendor: true, srcs: ["radio_hal_tool.c"], cflags: [ "-Wall", diff --git a/tests/hardware/Android.bp b/tests/hardware/Android.bp index b1376840..a52a4ab1 100644 --- a/tests/hardware/Android.bp +++ b/tests/hardware/Android.bp @@ -21,5 +21,7 @@ cc_library_static { "-Werror", ], + vendor: true, + include_dirs: ["system/media/camera/include"], }