1# Copyright (C) 2014 The Android Open Source Project 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15LOCAL_PATH := $(call my-dir) 16 17# build vogar jar 18# ============================================================ 19 20include $(CLEAR_VARS) 21 22LOCAL_MODULE := vogar 23LOCAL_MODULE_TAGS := optional 24LOCAL_MODULE_CLASS := JAVA_LIBRARIES 25LOCAL_SRC_FILES := $(call all-java-files-under, src/) 26LOCAL_JAVA_RESOURCE_DIRS := resources 27 28LOCAL_STATIC_JAVA_LIBRARIES := \ 29 caliper \ 30 caliper-gson \ 31 guavalib \ 32 junit \ 33 vogar-jsr305 \ 34 vogar-kxml-libcore-20110123 35 36LOCAL_ADDITIONAL_DEPENDENCIES := \ 37 $(HOST_OUT_EXECUTABLES)/dx \ 38 $(HOST_OUT_EXECUTABLES)/d8-compat-dx \ 39 $(HOST_OUT_JAVA_LIBRARIES)/desugar.jar 40 41# Vogar uses android.jar. 42LOCAL_CLASSPATH := $(call resolve-prebuilt-sdk-jar-path,current) 43LOCAL_JAVA_LANGUAGE_VERSION := 1.7 44 45include $(BUILD_HOST_JAVA_LIBRARY) 46 47# build vogar tests jar 48# ============================================================ 49# Run the tests using using the following target. 50.PHONY: run-vogar-tests 51run-vogar-tests: vogar-tests 52 java -cp ./out/host/linux-x86/framework/vogar-tests.jar \ 53 org.junit.runner.JUnitCore vogar.AllTests 54 55include $(CLEAR_VARS) 56 57LOCAL_MODULE := vogar-tests 58LOCAL_MODULE_TAGS := optional 59LOCAL_MODULE_CLASS := JAVA_LIBRARIES 60LOCAL_SRC_FILES := $(call all-java-files-under, test/) 61 62LOCAL_STATIC_JAVA_LIBRARIES := \ 63 junit \ 64 mockito \ 65 objenesis \ 66 vogar 67 68LOCAL_JAVA_LANGUAGE_VERSION := 1.7 69 70include $(BUILD_HOST_JAVA_LIBRARY) 71 72# Build dependencies. 73# ============================================================ 74include $(CLEAR_VARS) 75 76LOCAL_PREBUILT_JAVA_LIBRARIES := \ 77 vogar-jsr305:lib/jsr305$(COMMON_JAVA_PACKAGE_SUFFIX) \ 78 vogar-kxml-libcore-20110123:lib/kxml-libcore-20110123$(COMMON_JAVA_PACKAGE_SUFFIX) 79 80include $(BUILD_HOST_PREBUILT) 81 82# copy vogar script 83# ============================================================ 84include $(CLEAR_VARS) 85LOCAL_IS_HOST_MODULE := true 86LOCAL_MODULE_CLASS := EXECUTABLES 87LOCAL_MODULE := vogar 88LOCAL_SRC_FILES := bin/vogar-android 89include $(BUILD_PREBUILT) 90 91