Adding skeleton code for InCallUI.

Defines a service to communicate with Telephony Service.

Change-Id: I633cbdae529ff61989f30cebfac240ce5a895687
diff --git a/InCallUI/Android.mk b/InCallUI/Android.mk
new file mode 100644
index 0000000..11a315a
--- /dev/null
+++ b/InCallUI/Android.mk
@@ -0,0 +1,15 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_STATIC_JAVA_LIBRARIES := com.android.services.telephony.common
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+LOCAL_PACKAGE_NAME := InCallUI
+LOCAL_CERTIFICATE := platform
+LOCAL_PRIVELEGED_MODULE := true
+
+include $(BUILD_PACKAGE)
+
+# Build the test package
+include $(call all-makefiles-under,$(LOCAL_PATH))