config: Create makefiles for tablets with telephony support
So far, tablets with telephony have been inheriting from
common_full_phone.mk, but that's not really proper because
such makefile now enables one-handed mode support
(setting prop ro.support_one_handed_mode to true).
Fix this by creating new makefiles that can be used also
to include more tablet-specific configs moving forward.
Change-Id: I90c22badb17911ef5e873299d986204718300e6c
diff --git a/config/common_mini_tablet.mk b/config/common_mini_tablet.mk
new file mode 100644
index 0000000..f630e28
--- /dev/null
+++ b/config/common_mini_tablet.mk
@@ -0,0 +1,8 @@
+# Inherit mini common BlissRoms stuff
+$(call inherit-product, vendor/bliss/config/common_mini.mk)
+
+# Required packages
+PRODUCT_PACKAGES += \
+ LatinIME
+
+$(call inherit-product, vendor/bliss/config/telephony.mk)