aboutsummaryrefslogtreecommitdiffstats
path: root/device_validator
diff options
context:
space:
mode:
Diffstat (limited to 'device_validator')
-rw-r--r--device_validator/.gitignore1
-rw-r--r--device_validator/dvlib/.gitignore1
-rw-r--r--device_validator/dvlib/build.gradle27
3 files changed, 29 insertions, 0 deletions
diff --git a/device_validator/.gitignore b/device_validator/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/device_validator/.gitignore
@@ -0,0 +1 @@
+/build \ No newline at end of file
diff --git a/device_validator/dvlib/.gitignore b/device_validator/dvlib/.gitignore
index e660fd9..3558c56 100644
--- a/device_validator/dvlib/.gitignore
+++ b/device_validator/dvlib/.gitignore
@@ -1 +1,2 @@
bin/
+build/
diff --git a/device_validator/dvlib/build.gradle b/device_validator/dvlib/build.gradle
new file mode 100644
index 0000000..36e0910
--- /dev/null
+++ b/device_validator/dvlib/build.gradle
@@ -0,0 +1,27 @@
+apply plugin: 'java'
+
+dependencies {
+ testCompile 'junit:junit:3.8.1'
+}
+
+group = 'com.android.tools'
+archivesBaseName = 'dvlib'
+
+sourceSets {
+ main {
+ java {
+ srcDir 'src'
+ }
+ resources {
+ srcDir 'src'
+ }
+ }
+ test {
+ java {
+ srcDir 'tests/src'
+ }
+ resources {
+ srcDir 'tests/src'
+ }
+ }
+}