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

Commit 719bc97b authored by Chia-I Wu's avatar Chia-I Wu Committed by android-build-merger
Browse files

graphics: move libgralloc1-adapter am: d6695d5b

am: a3c036bd

Change-Id: I25f42dcd297350e8eb5cc9fc1eb6992e9f9dc9d5
parents c420de79 a3c036bd
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -36,13 +36,3 @@ cc_binary {
        "libutils",
    ],
}

cc_library_static {
    name: "libgralloc1-adapter",
    defaults: ["hidl_defaults"],
    srcs: ["gralloc1-adapter.cpp", "Gralloc1On0Adapter.cpp"],
    include_dirs: ["system/core/libsync/include"],
    cflags: ["-Wall", "-Wextra"],
    export_include_dirs: ["."],
    whole_static_libs: ["libgrallocusage"],
}
+4 −0
Original line number Diff line number Diff line
# Graphics team
jessehall@google.com
olv@google.com
stoza@google.com
+10 −0
Original line number Diff line number Diff line
cc_library_static {
    name: "libgralloc1-adapter",
    defaults: ["hidl_defaults"],
    vendor: true,
    srcs: ["gralloc1-adapter.cpp", "Gralloc1On0Adapter.cpp"],
    include_dirs: ["system/core/libsync/include"],
    export_include_dirs: ["."],
    whole_static_libs: ["libgrallocusage"],
    shared_libs: ["libhardware", "liblog"],
}
+1 −0
Original line number Diff line number Diff line
@@ -29,6 +29,7 @@
#include <sync/sync.h>

#include <inttypes.h>
#include <unistd.h>

template <typename PFN, typename T>
static gralloc1_function_pointer_t asFP(T function)
Loading