Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ab66edc0 authored by Justin Yun's avatar Justin Yun
Browse files

Do not export private headers with llndk library

A header file in private directory are not supposed to export with
llndk library. To avoid this, move the private directory to a new
include-private directory and export it for framework-only library.

Bug: 69235725
Test: build and boot any device.
Change-Id: I9f020411350cf5b5f1db01ef9add76d8c3b2c395
parent f02c8b41
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -30,7 +30,10 @@ ndk_library {

cc_library {
    name: "libnativewindow",
    export_include_dirs: ["include"],
    export_include_dirs: [
        "include",
        "include-private",
    ],

    clang: true,