Add host bin modules for explicit dependency

This fixes the build error:
development/build/sdk.atree:66: couldn't locate source file:
bin/llvm-rs-cc
Previously llvm-rs-cc was indirectly required via some intermediate
targets and now the chain is broken.

Change-Id: I722eee80deb03b219a16fe1c18fe87439ac8ff98
diff --git a/build/product_sdk.mk b/build/product_sdk.mk
index 3d54411..f7ebfd2 100644
--- a/build/product_sdk.mk
+++ b/build/product_sdk.mk
@@ -27,7 +27,9 @@
 
 # Host tools and java libraries that are parts of the SDK.
 PRODUCT_PACKAGES += \
+	aapt \
 	adb \
+	aidl \
 	bios.bin \
 	commons-compress-1.0 \
 	dexdump \
@@ -43,10 +45,9 @@
 	jython \
 	layoutlib \
 	layoutlib-tests \
+	llvm-rs-cc \
 	org.eclipse.jface_3.6.2.M20110210-1200 \
 	org.eclipse.equinox.common_3.6.0.v20100503 \
 	org.eclipse.core.commands_3.6.0.I20100512-1500 \
 	osgi \
 	vgabios-cirrus.bin
-
-:qa!