Merge "FDO: do not support host modules"

This commit is contained in:
Ying Wang 2013-08-08 18:54:20 +00:00 committed by Gerrit Code Review
commit 515e0465d1
1 changed files with 5 additions and 3 deletions

View File

@ -115,9 +115,11 @@ endif
## Add FDO flags if FDO is turned on and supported
####################################################
ifeq ($(strip $(LOCAL_NO_FDO_SUPPORT)),)
LOCAL_CFLAGS += $(TARGET_FDO_CFLAGS)
LOCAL_CPPFLAGS += $(TARGET_FDO_CFLAGS)
LOCAL_LDFLAGS += $(TARGET_FDO_CFLAGS)
ifeq ($(strip $(LOCAL_IS_HOST_MODULE)),)
LOCAL_CFLAGS += $(TARGET_FDO_CFLAGS)
LOCAL_CPPFLAGS += $(TARGET_FDO_CFLAGS)
LOCAL_LDFLAGS += $(TARGET_FDO_CFLAGS)
endif
endif
####################################################