exclude Nanum Gothic from EXTENDED_FONT_FOOTPRINT builds

those builds will have Noto CJK fonts instead

Bug: 15569561
Change-Id: Ibddd649044f4cb40ceb63c84f9cef82258c3f14c
diff --git a/Android.mk b/Android.mk
index 0efbae0..5bbd5a8 100644
--- a/Android.mk
+++ b/Android.mk
@@ -18,6 +18,7 @@
 LOCAL_PATH := $(call my-dir)
 
 ifneq ($(SMALLER_FONT_FOOTPRINT),true)
+ifneq ($(EXTENDED_FONT_FOOTPRINT),true)
 include $(CLEAR_VARS)
 LOCAL_MODULE := NanumGothic.ttf
 LOCAL_SRC_FILES := $(LOCAL_MODULE)
@@ -25,4 +26,5 @@
 LOCAL_MODULE_TAGS := optional
 LOCAL_MODULE_PATH := $(TARGET_OUT)/fonts
 include $(BUILD_PREBUILT)
-endif
+endif  # !EXTENDED_FONT_FOOTPRINT
+endif  # !SMALLER_FONT_FOOTPRINT