mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 03:30:22 +01:00
Make modetest available to vendors on Android. libdrm_util and libdrm_test_headers is also made available to vendors since these are depenencies of modetest. This results in the module target modetest.vendor being availble to vendor modules. Signed-off-by: Rob Barnes <robbarnes at google.com>
13 lines
238 B
Text
13 lines
238 B
Text
build = ["Android.sources.bp"]
|
|
|
|
cc_binary {
|
|
name: "modetest",
|
|
defaults: [
|
|
"libdrm_defaults",
|
|
"modetest_sources",
|
|
],
|
|
|
|
shared_libs: ["libdrm"],
|
|
static_libs: ["libdrm_util"],
|
|
vendor_available: true,
|
|
}
|