Add EasyMock 3.1, Objenesis 1.2 and cglib 2.2.3

Note that cglib 2.2.x requires ASM 3.3.x
(instead of the new ASM 4.x) so re-introduce a jar
for this too. This allows EasyMock to mock actual
classes instead of just interfaces.

Change-Id: Ia6b5d1ac6d3093da1775c8029cd7da60d39d69c6
diff --git a/common/cglib/Android.mk b/common/cglib/Android.mk
new file mode 100644
index 0000000..d842310
--- /dev/null
+++ b/common/cglib/Android.mk
@@ -0,0 +1,26 @@
+# Copyright (C) 2012 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+# Note: To use cglib, please also add target asm-3-tools.
+
+LOCAL_PREBUILT_JAVA_LIBRARIES := \
+    cglib:cglib-2.2.3$(COMMON_JAVA_PACKAGE_SUFFIX)
+
+LOCAL_MODULE_TAGS := optional
+
+include $(BUILD_HOST_PREBUILT)