am 2e45116d: am 515e0465: Merge "FDO: do not support host modules"

* commit '2e45116d3a9c1ab055dd7a6a93bb4ab79414c081':
  FDO: do not support host modules
This commit is contained in:
Ying Wang 2013-08-09 12:47:16 -07:00 committed by Android Git Automerger
commit 0790dcfd3b
1 changed files with 5 additions and 3 deletions

View File

@ -119,9 +119,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
####################################################