mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 02:20:15 +01:00
See build/soong/README.md for more information about Soong. Removes BOARD_GPU_DRIVERS, which wasn't affecting anything, since none of the HAVE_* macros are defined. Even if they were, we'd prefer to compile all of them so that a single library can support multiple boards.
14 lines
254 B
Text
14 lines
254 B
Text
cc_library_shared {
|
|
name: "libdrm_tegra",
|
|
vendor: true,
|
|
shared_libs: ["libdrm"],
|
|
|
|
srcs: ["tegra.c"],
|
|
|
|
cflags: [
|
|
"-DHAVE_LIBDRM_ATOMIC_PRIMITIVES=1",
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wno-unused-variable",
|
|
],
|
|
}
|