From 9b4bc28b434863fa1d79350e94faa29e3c705142 Mon Sep 17 00:00:00 2001 From: Spandan Das Date: Thu, 8 Sep 2022 21:59:20 +0000 Subject: [PATCH] Declare the headers of the ndk_library This creates a dependency edge between the ndk_library and its headers, which should be a no-op in regular Soong builds. This dependency edge will be used in the Multi-tree project to export the relevant .h files into a well known location Test: m nothing Bug: 239044713 Change-Id: I374b1529456c4c71ac419b4684f2fd215c68e791 --- libsync/Android.bp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libsync/Android.bp b/libsync/Android.bp index 99c88cf21..b6b4a6e49 100644 --- a/libsync/Android.bp +++ b/libsync/Android.bp @@ -27,6 +27,9 @@ ndk_library { name: "libsync", symbol_file: "libsync.map.txt", first_version: "26", + export_header_libs: [ + "libsync_headers", + ], } cc_defaults {