gradle for support lib.

To build: 'gradle release'

This requires a local version of Gradle for now, until
we figure out where we'll put the wrapper.

Change-Id: I8cf57fd97d5213dbc28d3bf68ea175348fe9a11b
diff --git a/v7/gridlayout/build.gradle b/v7/gridlayout/build.gradle
new file mode 100644
index 0000000..4fc6b12
--- /dev/null
+++ b/v7/gridlayout/build.gradle
@@ -0,0 +1,22 @@
+apply plugin: 'android-library'
+
+archivesBaseName = 'gridlayout-v7'
+
+android {
+    compileSdkVersion "unstubbed"
+    buildToolsVersion "17"
+
+    sourceSets {
+        main.manifest.srcFile 'AndroidManifest.xml'
+        main.java.srcDir 'src'
+        main.res.srcDir 'res'
+        main.assets.srcDir 'assets'
+        main.resources.srcDir 'src'
+        instrumentTest.java.srcDir 'tests/src'
+
+        // this moves src/instrumentTest to tests so all folders follow:
+        // tests/java, tests/res, tests/assets, ...
+        // This is a *reset* so it replaces the default paths
+        instrumentTest.setRoot('tests')
+    }
+}
\ No newline at end of file