Design support library skeleton DO NOT MERGE

Change-Id: I997af23e4aa7235f45908875c717831b50cb08b4
(cherry picked from commit 7b1bb4ee58ef58e205e01064c1f6452cdb015012)
diff --git a/design/build.gradle b/design/build.gradle
new file mode 100644
index 0000000..25a8981
--- /dev/null
+++ b/design/build.gradle
@@ -0,0 +1,35 @@
+apply plugin: 'android-library'
+
+archivesBaseName = 'design'
+
+dependencies {
+    compile project(':support-v4')
+}
+
+android {
+    compileSdkVersion 'current'
+
+    sourceSets {
+        main.manifest.srcFile 'AndroidManifest.xml'
+        main.java.srcDir 'src'
+        main.res.srcDir 'res'
+        main.assets.srcDir 'assets'
+        main.resources.srcDir '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
+        androidTest.setRoot('tests')
+        androidTest.java.srcDir 'tests/src'
+    }
+
+    compileOptions {
+        sourceCompatibility JavaVersion.VERSION_1_7
+        targetCompatibility JavaVersion.VERSION_1_7
+    }
+
+    lintOptions {
+        // TODO: fix errors and reenable.
+        abortOnError false
+    }
+}