Brian Muramatsu | 2f8eead | 2010-09-24 14:56:43 -0700 | [diff] [blame] | 1 | # Copyright (C) 2010 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 | LOCAL_PATH := $(call my-dir) |
| 16 | |
Sam Lin | 96dafd0 | 2018-01-08 00:15:37 -0800 | [diff] [blame] | 17 | # the cts-api-coverage script |
Brian Muramatsu | 2f8eead | 2010-09-24 14:56:43 -0700 | [diff] [blame] | 18 | # ============================================================ |
| 19 | include $(CLEAR_VARS) |
| 20 | LOCAL_IS_HOST_MODULE := true |
| 21 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 22 | LOCAL_MODULE := cts-api-coverage |
Dan Willemsen | 5a64f58 | 2016-03-23 01:08:29 -0700 | [diff] [blame] | 23 | LOCAL_SRC_FILES := etc/$(LOCAL_MODULE) |
| 24 | LOCAL_ADDITIONAL_DEPENDENCIES := $(HOST_OUT_JAVA_LIBRARIES)/$(LOCAL_MODULE)$(COMMON_JAVA_PACKAGE_SUFFIX) |
Sam Lin | 921218b | 2017-09-26 14:21:33 -0700 | [diff] [blame] | 25 | |
Dan Willemsen | 5a64f58 | 2016-03-23 01:08:29 -0700 | [diff] [blame] | 26 | include $(BUILD_PREBUILT) |
Brian Muramatsu | 2f8eead | 2010-09-24 14:56:43 -0700 | [diff] [blame] | 27 | |
Sam Lin | 96dafd0 | 2018-01-08 00:15:37 -0800 | [diff] [blame] | 28 | # the ndk-api-report script |
Brian Muramatsu | 2f8eead | 2010-09-24 14:56:43 -0700 | [diff] [blame] | 29 | # ============================================================ |
Sam Lin | 96dafd0 | 2018-01-08 00:15:37 -0800 | [diff] [blame] | 30 | include $(CLEAR_VARS) |
| 31 | LOCAL_IS_HOST_MODULE := true |
| 32 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 33 | LOCAL_MODULE := ndk-api-report |
| 34 | LOCAL_SRC_FILES := etc/$(LOCAL_MODULE) |
Brian Muramatsu | 2f8eead | 2010-09-24 14:56:43 -0700 | [diff] [blame] | 35 | |
Sam Lin | 96dafd0 | 2018-01-08 00:15:37 -0800 | [diff] [blame] | 36 | include $(BUILD_PREBUILT) |
| 37 | |
| 38 | # cts-api-coverage java library |
| 39 | # ============================================================ |
| 40 | include $(CLEAR_VARS) |
| 41 | |
| 42 | LOCAL_SRC_FILES := \ |
| 43 | $(call all-subdir-java-files) \ |
| 44 | $(call all-proto-files-under, proto) |
| 45 | |
| 46 | LOCAL_PROTOC_OPTIMIZE_TYPE := full |
| 47 | LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/proto/ |
| 48 | |
| 49 | LOCAL_JAVA_RESOURCE_DIRS := res |
| 50 | LOCAL_JAR_MANIFEST := MANIFEST.mf |
| 51 | |
| 52 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
| 53 | compatibility-host-util \ |
| 54 | dexlib2 |
| 55 | |
| 56 | LOCAL_MODULE := cts-api-coverage |
| 57 | |
| 58 | # This tool is not checking any dependencies or metadata, so all of the |
| 59 | # dependencies of all of the tests must be on its classpath. This is |
| 60 | # super fragile. |
| 61 | LOCAL_STATIC_JAVA_LIBRARIES += \ |
Sam Lin | d8589ad | 2018-01-21 23:04:37 -0800 | [diff] [blame] | 62 | tradefed hosttestlib \ |
| 63 | platformprotos |
Sam Lin | 96dafd0 | 2018-01-08 00:15:37 -0800 | [diff] [blame] | 64 | |
| 65 | include $(BUILD_HOST_JAVA_LIBRARY) |