Change output, add more metadata

Samples have emitXX tasks that emit sanitized versions of the
samples for various build environment (e.g. emitAnt). This change
makes the emit tasks put their output in platform/developers/build/out
rather than in each individual sample's build directory.

Also included: _index.jd creation.

Change-Id: Id1ec3588f682202fc82b7ba868cdaae8e7c579fc
diff --git a/build.gradle b/build.gradle
index 220840c..0942511 100644
--- a/build.gradle
+++ b/build.gradle
@@ -25,11 +25,20 @@
 }
 
 task wrapper(type: Wrapper) {
-    gradleVersion = '1.6'
+    gradleVersion = '1.8'
 }
 
+
+String outPath(String buildType) {
+    def repoInfo = "repo info platform/developers/build".execute().text
+    def buildPath = (repoInfo =~ /Mount path: (.*)/)[0][1]
+    return "${buildPath}/out/${buildType}/${samplegen.targetSampleName()}";
+}
+
+
+
 task emitAnt(type:Copy) {
-    def outputPath = "${samplegen.pathToBuild}/ant"
+    def outputPath = outPath("ant");
     def inputPath = "${project.projectDir}/${samplegen.targetSampleModule()}"
     mkdir outputPath
     into outputPath
@@ -47,11 +56,13 @@
 }
 
 task emitBrowseable(type:Copy) {
-    def outputPath = "${samplegen.pathToBuild}/browsable"
+    def outputPath =outPath("browseable");
     def inputPath = "${project.projectDir}/${samplegen.targetSampleModule()}"
     mkdir outputPath
     into outputPath
 
+    from("${project.projectDir}/_index.jd")
+
     ["main", "common", "template"].each { input ->
         def srcPath = "${inputPath}/src/${input}"
         into("src") {