1# Copyright (C) 2011 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 15# 16# Builds a host library and defines a rule to generate the associated test 17# package XML needed by CTS. 18# 19 20include $(BUILD_HOST_JAVA_LIBRARY) 21 22cts_library_xml := $(CTS_TESTCASES_OUT)/$(LOCAL_MODULE).xml 23 24cts_src_dirs := $(LOCAL_PATH)/src 25cts_src_dirs += $(sort $(dir $(LOCAL_GENERATED_SOURCES))) 26cts_src_dirs := $(addprefix -s , $(cts_src_dirs)) 27 28$(cts_library_xml): PRIVATE_SRC_DIRS := $(cts_src_dirs) 29$(cts_library_xml): PRIVATE_TEST_PACKAGE := $(LOCAL_CTS_TEST_PACKAGE) 30$(cts_library_xml): PRIVATE_LIBRARY := $(LOCAL_MODULE) 31$(cts_library_xml): PRIVATE_JAR_PATH := $(LOCAL_MODULE).jar 32$(cts_library_xml): $(HOST_OUT_JAVA_LIBRARIES)/$(LOCAL_MODULE).jar $(CTS_EXPECTATIONS) $(CTS_UNSUPPORTED_ABIS) $(CTS_JAVA_TEST_SCANNER_DOCLET) $(CTS_JAVA_TEST_SCANNER) $(CTS_XML_GENERATOR) 33 $(hide) echo Generating test description for host library $(PRIVATE_LIBRARY) 34 $(hide) mkdir -p $(CTS_TESTCASES_OUT) 35 $(hide) $(CTS_JAVA_TEST_SCANNER) $(PRIVATE_SRC_DIRS) \ 36 -d $(CTS_JAVA_TEST_SCANNER_DOCLET) | \ 37 $(CTS_XML_GENERATOR) -t hostSideOnly \ 38 -j $(PRIVATE_JAR_PATH) \ 39 -n $(PRIVATE_LIBRARY) \ 40 -p $(PRIVATE_TEST_PACKAGE) \ 41 -e $(CTS_EXPECTATIONS) \ 42 -b $(CTS_UNSUPPORTED_ABIS) \ 43 -a $(CTS_TARGET_ARCH) \ 44 -o $@ 45 46# Have the module name depend on the cts files; so the cts files get generated when you run mm/mmm/mma/mmma. 47$(my_register_name) : $(cts_library_xml) 48