blob: 5bc64dd3d773b32c583794c9261638178f2dc586 [file] [log] [blame]
Lingfeng Yangd7447042018-10-25 11:09:18 -07001LOCAL_PATH := $(call my-dir)
2
3$(call emugl-begin-static-library,libandroidemu)
4$(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
Lingfeng Yanga4085412018-11-01 20:19:46 -07005$(call emugl-export,SHARED_LIBRARIES,libcutils libutils liblog)
Lingfeng Yangd7447042018-10-25 11:09:18 -07006
7LOCAL_CFLAGS += \
8 -DLOG_TAG=\"androidemu\" \
9 -Wno-missing-field-initializers \
10 -fvisibility=default \
11 -fstrict-aliasing \
12
13LOCAL_SRC_FILES := \
Lingfeng Yang6f3b6c52018-11-05 14:22:37 -080014 android/base/AlignedBuf.cpp \
Lingfeng Yangd7447042018-10-25 11:09:18 -070015 android/base/files/MemStream.cpp \
16 android/base/files/Stream.cpp \
17 android/base/files/StreamSerializing.cpp \
Lingfeng Yangd7447042018-10-25 11:09:18 -070018 android/base/Pool.cpp \
19 android/base/StringFormat.cpp \
Lingfeng Yangd3dd1c32018-12-25 10:15:28 -080020 android/base/SubAllocator.cpp \
Lingfeng Yang42ac1792019-02-22 20:13:44 -080021 android/base/Tracing.cpp \
Lingfeng Yangd7447042018-10-25 11:09:18 -070022 android/utils/debug.c \
Lingfeng Yangd7447042018-10-25 11:09:18 -070023
24$(call emugl-end-module)