Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Side by Side Diff: experimental/HelloSkia/jni/Android.mk

Issue 16336004: create simple skia app for android using jni (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698