The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_SRC_FILES:= \ |
Andreas Gampe | 5a15d0d | 2014-11-10 18:19:40 -0800 | [diff] [blame] | 5 | android_media_SoundPool_SoundPoolImpl.cpp |
Eric Laurent | f5e1812 | 2012-03-26 10:47:22 -0700 | [diff] [blame] | 6 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 7 | LOCAL_SHARED_LIBRARIES := \ |
Andreas Gampe | 5a15d0d | 2014-11-10 18:19:40 -0800 | [diff] [blame] | 8 | liblog \ |
| 9 | libcutils \ |
| 10 | libutils \ |
| 11 | libandroid_runtime \ |
| 12 | libnativehelper \ |
| 13 | libmedia |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 14 | |
| 15 | LOCAL_MODULE:= libsoundpool |
| 16 | |
Andreas Gampe | 5a15d0d | 2014-11-10 18:19:40 -0800 | [diff] [blame] | 17 | LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code |
| 18 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 19 | include $(BUILD_SHARED_LIBRARY) |