Home | History | Annotate | Download | only in android-emu
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 $(call emugl-begin-static-library,libandroidemu)
      4 $(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
      5 $(call emugl-export,SHARED_LIBRARIES,libcutils libutils liblog)
      6 
      7 LOCAL_CFLAGS += \
      8     -DLOG_TAG=\"androidemu\" \
      9     -Wno-missing-field-initializers \
     10     -fvisibility=default \
     11     -fstrict-aliasing \
     12 
     13 LOCAL_SRC_FILES := \
     14     android/base/AlignedBuf.cpp \
     15     android/base/files/MemStream.cpp \
     16     android/base/files/Stream.cpp \
     17     android/base/files/StreamSerializing.cpp \
     18     android/base/Pool.cpp \
     19     android/base/StringFormat.cpp \
     20     android/base/SubAllocator.cpp \
     21     android/base/Tracing.cpp \
     22     android/utils/debug.c \
     23 
     24 $(call emugl-end-module)
     25