diff options
author | Michael Wright <michaelwr@google.com> | 2012-05-17 17:40:58 -0700 |
---|---|---|
committer | Michael Wright <michaelwr@google.com> | 2012-06-04 18:39:28 -0700 |
commit | 10ca09dea02aa82b2b3d5b750178b724e3454129 (patch) | |
tree | 7bdcc3a38c3f2209b80f647050ae5695c2f74efc /device_validator/app/Android.mk | |
parent | 55121851dcb45f8474c2e895eb14cc8974045c86 (diff) | |
download | sdk-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/app/Android.mk')
-rw-r--r-- | device_validator/app/Android.mk | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/device_validator/app/Android.mk b/device_validator/app/Android.mk new file mode 100644 index 0000000..93e6226 --- /dev/null +++ b/device_validator/app/Android.mk @@ -0,0 +1,31 @@ +# 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_JAR_MANIFEST := etc/manifest.txt + +LOCAL_JAVA_LIBRARIES := \ + dvlib + +LOCAL_MODULE := device_validator +LOCAL_MODULE_TAGS := optional + +include $(BUILD_HOST_JAVA_LIBRARY) + +# Build all sub-directories +include $(call all-makefiles-under,$(LOCAL_PATH)) |