Static Libs for Popular CTS Stub Components

com.android.cts.stub is growing very large. Split apart some of
the popular components into separate static libraries. This
should allow packages to depend on the components they need
rather than all of cts.stub.

Current code at the moment doesn't have to be changed, because
I have CtsTestStubs depending on these new shared libraries.
However, change the net package to depend on the ctstestserver
static library as a proof of concept rather than including
its source directly.

Change-Id: I32c54eab3ddfb1d4391d6ffc347fbc9cb2fe97f9
diff --git a/tests/Android.mk b/tests/Android.mk
index cfaeb57..4868654 100644
--- a/tests/Android.mk
+++ b/tests/Android.mk
@@ -34,6 +34,8 @@
 
 LOCAL_PACKAGE_NAME := CtsTestStubs
 
+LOCAL_STATIC_JAVA_LIBRARIES := ctsutil ctstestserver
+
 include $(BUILD_PACKAGE)
 
 # Build the test APK using its own makefile, and any other CTS-related packages