diff options
author | Paulo Sergio Travaglia <[email protected]> | 2014-07-20 21:47:59 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-08-13 00:46:52 +0100 |
commit | 5bbfa308c918ee40ec4deea91362688d325886f9 (patch) | |
tree | 5f6298a519ac6332ef4ae0648ab8b4e9c667c5fa /src/gallium/Android.mk | |
parent | 825fa2873f2d5c35cea88c31e5baafc978baaec0 (diff) |
android: gallium/radeon: attempt to fix the android build
- include the correct folders
- add a new buildscript for the common radeon folder
v2: Use the installed libdrm headers over the DRM_TOP ones.
Cc: "10.1 10.2" <[email protected]>
[Emil Velikov] Split up and add commit message.
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/Android.mk')
-rw-r--r-- | src/gallium/Android.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/Android.mk b/src/gallium/Android.mk index 85334cf69bf..e365d6773b9 100644 --- a/src/gallium/Android.mk +++ b/src/gallium/Android.mk @@ -57,6 +57,8 @@ SUBDIRS += winsys/radeon/drm ifneq ($(filter r300g, $(MESA_GPU_DRIVERS)),) SUBDIRS += drivers/r300 endif +ifneq ($(filter r600g radeonsi, $(MESA_GPU_DRIVERS)),) +SUBDIRS += drivers/radeon ifneq ($(filter r600g, $(MESA_GPU_DRIVERS)),) SUBDIRS += drivers/r600 endif @@ -64,6 +66,7 @@ ifneq ($(filter radeonsi, $(MESA_GPU_DRIVERS)),) SUBDIRS += drivers/radeonsi endif endif +endif # vmwgfx ifneq ($(filter vmwgfx, $(MESA_GPU_DRIVERS)),) |