blob: ecde1964bfa483927ccc8de5aa172587cabbb55b [file] [log] [blame]
Brian Muramatsu5df641c2011-12-28 15:46:57 -08001# 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
Stuart Scott0337dbf2015-02-04 10:37:07 -080022cts_library_jar := $(CTS_TESTCASES_OUT)/$(LOCAL_MODULE).jar
23$(cts_library_jar): $(LOCAL_BUILT_MODULE)
24 $(copy-file-to-target)
Brian Muramatsu5df641c2011-12-28 15:46:57 -080025
dcashman8e1f6e42014-10-24 16:16:30 -070026cts_src_dirs := $(LOCAL_PATH)/src
27cts_src_dirs += $(sort $(dir $(LOCAL_GENERATED_SOURCES)))
28cts_src_dirs := $(addprefix -s , $(cts_src_dirs))
29
Stuart Scott0337dbf2015-02-04 10:37:07 -080030cts_library_xml := $(CTS_TESTCASES_OUT)/$(LOCAL_MODULE).xml
dcashman8e1f6e42014-10-24 16:16:30 -070031$(cts_library_xml): PRIVATE_SRC_DIRS := $(cts_src_dirs)
Brian Muramatsu5df641c2011-12-28 15:46:57 -080032$(cts_library_xml): PRIVATE_TEST_PACKAGE := $(LOCAL_CTS_TEST_PACKAGE)
33$(cts_library_xml): PRIVATE_LIBRARY := $(LOCAL_MODULE)
34$(cts_library_xml): PRIVATE_JAR_PATH := $(LOCAL_MODULE).jar
Stuart Scott34c8fc82014-09-08 13:25:16 -070035$(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)
Brian Muramatsu5df641c2011-12-28 15:46:57 -080036 $(hide) echo Generating test description for host library $(PRIVATE_LIBRARY)
37 $(hide) mkdir -p $(CTS_TESTCASES_OUT)
dcashman8e1f6e42014-10-24 16:16:30 -070038 $(hide) $(CTS_JAVA_TEST_SCANNER) $(PRIVATE_SRC_DIRS) \
Brian Muramatsu5df641c2011-12-28 15:46:57 -080039 -d $(CTS_JAVA_TEST_SCANNER_DOCLET) | \
40 $(CTS_XML_GENERATOR) -t hostSideOnly \
41 -j $(PRIVATE_JAR_PATH) \
42 -n $(PRIVATE_LIBRARY) \
43 -p $(PRIVATE_TEST_PACKAGE) \
44 -e $(CTS_EXPECTATIONS) \
Stuart Scott34c8fc82014-09-08 13:25:16 -070045 -b $(CTS_UNSUPPORTED_ABIS) \
Stuart Scottccdc00b2014-09-29 20:42:08 +000046 -a $(CTS_TARGET_ARCH) \
Brian Muramatsu5df641c2011-12-28 15:46:57 -080047 -o $@
Ying Wang1aed9cd2015-01-28 16:59:57 -080048
49# Have the module name depend on the cts files; so the cts files get generated when you run mm/mmm/mma/mmma.
Stuart Scott0337dbf2015-02-04 10:37:07 -080050$(my_register_name) : $(cts_library_jar) $(cts_library_xml)