blob: b41759aefc35ce3cab2da0fea64cf0a7f19f257f [file] [log] [blame]
Jean-Michel Trivi700ec652009-05-27 15:01:59 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 android_tts_SynthProxy.cpp
6
7LOCAL_C_INCLUDES += \
8 $(JNI_H_INCLUDE)
9
10LOCAL_SHARED_LIBRARIES := \
11 libandroid_runtime \
12 libnativehelper \
13 libmedia \
14 libutils \
Jean-Michel Trivi30b70ce2009-06-02 10:43:58 -070015 libcutils
16
Jean-Michel Trivi8aeac942009-06-03 09:43:14 -070017ifeq ($(TARGET_SIMULATOR),true)
18 LOCAL_LDLIBS += -ldl
19else
20 LOCAL_SHARED_LIBRARIES += libdl
Jean-Michel Trivia74303d2009-06-02 12:05:18 -070021endif
22
Jean-Michel Trivi700ec652009-05-27 15:01:59 -070023
24LOCAL_MODULE:= libttssynthproxy
25
26LOCAL_ARM_MODE := arm
27
Jean-Michel Trivi700ec652009-05-27 15:01:59 -070028include $(BUILD_SHARED_LIBRARY)
29