diff options
| author | 2010-03-16 19:08:54 -0700 | |
|---|---|---|
| committer | 2010-04-20 13:39:49 -0700 | |
| commit | ac075190b9a6f10c2f24c3e3d1de035aa0329fa4 (patch) | |
| tree | 5467444e24a4302bebea40de6c64b83494dcdaf7 /services/java/Android.mk | |
| parent | 865b16c4ba3d2a3dfe0ab2feb32e71894f218cbd (diff) | |
disable emma instrumentation for framework, ext and services
When these libraries are instrumented with emma instructions, runtime keeps
restarting on native crashes. To acheive a fully emma instrumented build,
we need to disable emma instrumentation on these libraries.
Change-Id: I914b7b88cfc39eddbf273e653e603d4edfdf5837
Diffstat (limited to 'services/java/Android.mk')
| -rw-r--r-- | services/java/Android.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/services/java/Android.mk b/services/java/Android.mk index 934712cb2ce0..c756d29f104e 100644 --- a/services/java/Android.mk +++ b/services/java/Android.mk @@ -13,7 +13,9 @@ LOCAL_MODULE:= services LOCAL_JAVA_LIBRARIES := android.policy +LOCAL_NO_EMMA_INSTRUMENT := true +LOCAL_NO_EMMA_COMPILE := true + include $(BUILD_JAVA_LIBRARY) include $(BUILD_DROIDDOC) - |