mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 19:50:12 +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.
16 lines
294 B
Text
16 lines
294 B
Text
build = ["Android.sources.bp"]
|
|
|
|
cc_library_shared {
|
|
name: "libdrm_amdgpu",
|
|
|
|
cflags: [
|
|
"-DAMDGPU_ASIC_ID_TABLE=\"/vendor/etc/hwdata/amdgpu.ids\""
|
|
],
|
|
|
|
defaults: [
|
|
"libdrm_defaults",
|
|
"libdrm_amdgpu_sources",
|
|
],
|
|
vendor: true,
|
|
shared_libs: ["libdrm"],
|
|
}
|