diff options
author | Rob Herring <[email protected]> | 2017-05-03 14:35:21 -0500 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-05-11 13:52:21 +0100 |
commit | 4c0c3719dc4323cbfbee4932436422057ddb944c (patch) | |
tree | 5f018b0e2786ca484eed9fdc1529e7640476b88d /Android.mk | |
parent | 3f097396a1642bb7033002d0bdd37e194afce06a (diff) |
Android: Add driver "all" option to enable all drivers
Add a driver string "all" so that if BOARD_GPU_DRIVERS is set to "all",
all the drivers are enabled in the build. This makes build testing all
drivers easier to maintain.
Signed-off-by: Rob Herring <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk index 71140df02c6..e2d792d8e4c 100644 --- a/Android.mk +++ b/Android.mk @@ -55,6 +55,10 @@ gallium_drivers := \ vc4.HAVE_GALLIUM_VC4 \ virgl.HAVE_GALLIUM_VIRGL +ifeq ($(BOARD_GPU_DRIVERS),all) +MESA_BUILD_CLASSIC := $(filter HAVE_%, $(subst ., , $(classic_drivers))) +MESA_BUILD_GALLIUM := $(filter HAVE_%, $(subst ., , $(gallium_drivers))) +else # Warn if we have any invalid driver names $(foreach d, $(BOARD_GPU_DRIVERS), \ $(if $(findstring $(d).,$(classic_drivers) $(gallium_drivers)), \ @@ -64,6 +68,7 @@ $(foreach d, $(BOARD_GPU_DRIVERS), \ ) MESA_BUILD_CLASSIC := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(classic_drivers))))) MESA_BUILD_GALLIUM := $(strip $(foreach d, $(BOARD_GPU_DRIVERS), $(patsubst $(d).%,%, $(filter $(d).%, $(gallium_drivers))))) +endif $(foreach d, $(MESA_BUILD_CLASSIC) $(MESA_BUILD_GALLIUM), $(eval $(d) := true)) # host and target must be the same arch to generate matypes.h |