diff options
Diffstat (limited to 'device_validator/dvlib')
-rw-r--r-- | device_validator/dvlib/.classpath | 10 | ||||
-rw-r--r-- | device_validator/dvlib/.gitignore | 2 | ||||
-rw-r--r-- | device_validator/dvlib/.project | 17 | ||||
-rw-r--r-- | device_validator/dvlib/Android.mk | 34 |
4 files changed, 0 insertions, 63 deletions
diff --git a/device_validator/dvlib/.classpath b/device_validator/dvlib/.classpath deleted file mode 100644 index 9cae787..0000000 --- a/device_validator/dvlib/.classpath +++ /dev/null @@ -1,10 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<classpath> - <classpathentry kind="src" path="src/main/java"/> - <classpathentry kind="src" path="src/test/java"/> - <classpathentry kind="src" path="src/main/resources"/> - <classpathentry kind="src" path="src/test/resources"/> - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> - <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/3"/> - <classpathentry kind="output" path="bin"/> -</classpath> diff --git a/device_validator/dvlib/.gitignore b/device_validator/dvlib/.gitignore deleted file mode 100644 index 3558c56..0000000 --- a/device_validator/dvlib/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -bin/ -build/ diff --git a/device_validator/dvlib/.project b/device_validator/dvlib/.project deleted file mode 100644 index 13abbdf..0000000 --- a/device_validator/dvlib/.project +++ /dev/null @@ -1,17 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<projectDescription> - <name>dvlib</name> - <comment></comment> - <projects> - </projects> - <buildSpec> - <buildCommand> - <name>org.eclipse.jdt.core.javabuilder</name> - <arguments> - </arguments> - </buildCommand> - </buildSpec> - <natures> - <nature>org.eclipse.jdt.core.javanature</nature> - </natures> -</projectDescription> diff --git a/device_validator/dvlib/Android.mk b/device_validator/dvlib/Android.mk deleted file mode 100644 index 658c69b..0000000 --- a/device_validator/dvlib/Android.mk +++ /dev/null @@ -1,34 +0,0 @@ -# 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) - -# The dvlib code has moved to tools/base/dvlib. -# The rule below uses the prebuilt dvlib.jar. -# -# If you want to run the tests, cd to tools/base/dvlib -# and run ./gradlew :dvlib:test - -LOCAL_JAVA_RESOURCE_DIRS := src/main/resources - -LOCAL_MODULE := dvlib -LOCAL_MODULE_TAGS := optional - -LOCAL_PREBUILT_JAVA_LIBRARIES := \ - ../../../prebuilts/devtools/tools/lib/$(LOCAL_MODULE)$(COMMON_JAVA_PACKAGE_SUFFIX) - -include $(BUILD_HOST_PREBUILT) - - |