aboutsummaryrefslogtreecommitdiffstats
path: root/device_validator/dvlib/tests/Android.mk
diff options
context:
space:
mode:
authorMichael Wright <michaelwr@google.com>2012-05-17 17:40:58 -0700
committerMichael Wright <michaelwr@google.com>2012-06-04 18:39:28 -0700
commit10ca09dea02aa82b2b3d5b750178b724e3454129 (patch)
tree7bdcc3a38c3f2209b80f647050ae5695c2f74efc /device_validator/dvlib/tests/Android.mk
parent55121851dcb45f8474c2e895eb14cc8974045c86 (diff)
downloadsdk-10ca09dea02aa82b2b3d5b750178b724e3454129.zip
sdk-10ca09dea02aa82b2b3d5b750178b724e3454129.tar.gz
sdk-10ca09dea02aa82b2b3d5b750178b724e3454129.tar.bz2
Added new devices schema
Also updated devices.xml to validate against it. Change-Id: Ia9b5212b8273e39f7f22022661e2c755c3a9d279
Diffstat (limited to 'device_validator/dvlib/tests/Android.mk')
-rw-r--r--device_validator/dvlib/tests/Android.mk30
1 files changed, 30 insertions, 0 deletions
diff --git a/device_validator/dvlib/tests/Android.mk b/device_validator/dvlib/tests/Android.mk
new file mode 100644
index 0000000..5094d7a
--- /dev/null
+++ b/device_validator/dvlib/tests/Android.mk
@@ -0,0 +1,30 @@
+# Copyright (C) 2012 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+LOCAL_JAVA_RESOURCE_DIRS := src
+
+LOCAL_MODULE := dvlib-tests
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_JAVA_LIBRARIES := \
+ dvlib \
+ junit
+
+include $(BUILD_HOST_JAVA_LIBRARY)
+
+include $(call all-makefiles-under,$(LOCAL_PATH))