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

Commit f51c1dff authored by Yurii Zubrytskyi's avatar Yurii Zubrytskyi
Browse files

[res] Start using the native's header library

It adds a few useful classes, like SmallVector, to optimize
the most common use cases in Resources

Flag: EXEMPT build change
Test: builds
Change-Id: Ia386a86c4f5578abe3024226bda755687fede014
parent 6a3e6b1a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -44,6 +44,9 @@ cc_defaults {
        "-Werror",
        "-Wunreachable-code",
    ],
    header_libs: [
        "native_headers",
    ],
    target: {
        windows: {
            // The Windows compiler warns incorrectly for value initialization with {}.
+4 −1
Original line number Diff line number Diff line
@@ -55,7 +55,10 @@ cc_defaults {
            cflags: ["-D_DARWIN_UNLIMITED_STREAMS"],
        },
    },
    header_libs: ["jni_headers"],
    header_libs: [
        "jni_headers",
        "native_headers",
    ],
    static_libs: [
        "libandroidfw",
        "libutils",