summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe LaPenna <jlapenna@google.com>2014-07-15 16:51:42 -0700
committerJoe LaPenna <jlapenna@google.com>2014-07-15 16:51:44 -0700
commit792ab6cd24ff803485fd0a2ed82371f9a5439a86 (patch)
treef32a21779fb5e29c4c903a911075d42e0b98fc5a
parentf6771f631b814189d83b9b16cfa73d1466f932af (diff)
downloadbuild-792ab6cd24ff803485fd0a2ed82371f9a5439a86.zip
build-792ab6cd24ff803485fd0a2ed82371f9a5439a86.tar.gz
build-792ab6cd24ff803485fd0a2ed82371f9a5439a86.tar.bz2
Add tvdpi to list of possible recovery asset densities
Bug: 16306251 Change-Id: Iaf2d36d734bb6b639b01e1097723d8387259265b
-rw-r--r--core/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Makefile b/core/Makefile
index bc2bad5..ace7e70 100644
--- a/core/Makefile
+++ b/core/Makefile
@@ -716,7 +716,7 @@ recovery_density := $(filter %dpi,$(PRODUCT_AAPT_PREF_CONFIG))
else
# Otherwise, use the highest density that appears in PRODUCT_AAPT_CONFIG.
# Order is important here; we'll take the first one that's found.
-recovery_densities := $(filter $(PRODUCT_AAPT_CONFIG_SP),xxxhdpi xxhdpi xhdpi hdpi mdpi ldpi)
+recovery_densities := $(filter $(PRODUCT_AAPT_CONFIG_SP),xxxhdpi xxhdpi xhdpi hdpi tvdpi mdpi ldpi)
ifneq (,$(recovery_densities))
recovery_density := $(word 1,$(recovery_densities))
endif