Mercurial > MadButterfly
annotate Android/examples/native_test/Android.mk @ 1248:2f9fa5d59e67
Add data_monitor meta-class to monitor accessing on domview_ui.
- The monitoring is to prevent from reentry triggered by DOM events.
- call 'do*' methods of a monitored class would try to lock
domview_ui at first.
- The method would not be executed actually if being fault to lock.
- You can make monitor to print debug message with environment variable
- DATA_MONITOR_DBG=1, or
- DATA_MONITOR_DBG=2
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Tue, 11 Jan 2011 10:04:14 +0800 |
parents | 3a7bce43ec6e |
children |
rev | line source |
---|---|
518
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
1 LOCAL_PATH := $(call my-dir) |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
2 include $(CLEAR_VARS) |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
3 |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
4 LOCAL_MODULE := native_test |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
5 LOCAL_STATIC_LIBRARIES := libmbfly |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
6 LOCAL_SHARED_LIBRARIES := libsgl |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
7 LOCAL_C_INCLUDES += $(call include-path-for,corecg) \ |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
8 $(TARGET_OUT_HEADERS)/libmbfly |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
9 LOCAL_SRC_FILES := native_test.cpp |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
10 |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
11 include $(BUILD_EXECUTABLE) |
3a7bce43ec6e
Android native code with MB
Thinker K.F. Li <thinker@branda.to>
parents:
diff
changeset
|
12 |