OLD | NEW |
---|---|
(Empty) | |
1 LOCAL_PATH := $(call my-dir) | |
2 | |
3 # libskia | |
djsollen
2013/06/03 18:24:45
add comments here about what this code snippet doe
Zach Reizner
2013/06/03 22:54:25
Done.
| |
4 | |
5 include $(CLEAR_VARS) | |
6 LOCAL_MODULE := skia_local | |
djsollen
2013/06/03 18:24:45
rename to skia_android
Zach Reizner
2013/06/03 22:54:25
Done.
| |
7 LOCAL_SRC_FILES := libskia_android.so | |
8 | |
9 include $(PREBUILT_SHARED_LIBRARY) | |
10 | |
11 | |
12 # libHelloSkia | |
13 | |
14 include $(CLEAR_VARS) | |
15 | |
16 LOCAL_MODULE := HelloSkia | |
djsollen
2013/06/03 18:24:45
rename to hello_skia_ndk.
Zach Reizner
2013/06/03 22:54:25
Done.
| |
17 LOCAL_SRC_FILES := helloskia.cpp | |
18 | |
19 LOCAL_SHARED_LIBRARIES := skia_local | |
20 | |
21 LOCAL_LDLIBS := -ljnigraphics | |
djsollen
2013/06/03 18:24:45
comment on why this is needed.
Zach Reizner
2013/06/03 22:54:25
Done.
| |
22 | |
23 LOCAL_C_INCLUDES := /usr/local/google/home/zachr/src/skia_so/trunk/include/confi g \ | |
24 /usr/local/google/home/zachr/src/skia_so/trunk/include/core | |
djsollen
2013/06/03 18:24:45
give the user instructions on where they are suppo
| |
25 | |
26 include $(BUILD_SHARED_LIBRARY) | |
27 | |
OLD | NEW |