summaryrefslogtreecommitdiff
path: root/tests/tests/os/Android.mk
blob: 89eb4446a776f0f85f1a73297ce1acd77d1ea4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Copyright (C) 2008 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)

# don't include this package in any target
LOCAL_MODULE_TAGS := optional
# and when built explicitly put it in the data partition
LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)

# Include both the 32 and 64 bit versions
LOCAL_MULTILIB := both

LOCAL_STATIC_JAVA_LIBRARIES := \
    androidx.test.rules \
    compatibility-device-util-axt \
    ctstestrunner-axt \
    truth-prebuilt \
    guava \
    junit

LOCAL_JNI_SHARED_LIBRARIES := libcts_jni libctsos_jni libnativehelper_compat_libc++

LOCAL_SRC_FILES := \
    $(call all-java-files-under, src) \
    src/android/os/cts/IParcelFileDescriptorPeer.aidl \
    src/android/os/cts/IEmptyService.aidl \
    src/android/os/cts/ISeccompIsolatedService.aidl \
    src/android/os/cts/ISecondary.aidl \
    src/android/os/cts/ISharedMemoryService.aidl \
    src/android/os/cts/IParcelExceptionService.aidl \

LOCAL_PACKAGE_NAME := CtsOsTestCases

# Tag this module as a cts test artifact
LOCAL_COMPATIBILITY_SUITE := cts vts general-tests

# uncomment when b/13282254 is fixed
#LOCAL_SDK_VERSION := current
LOCAL_PRIVATE_PLATFORM_APIS := true
LOCAL_JAVA_LIBRARIES += android.test.runner.stubs
LOCAL_JAVA_LIBRARIES += android.test.base.stubs

# Do not compress minijail policy files.
LOCAL_AAPT_FLAGS := -0 .policy

include $(BUILD_CTS_PACKAGE)

include $(call all-makefiles-under,$(LOCAL_PATH))

# platform version check (b/32056228)
# ============================================================
include $(CLEAR_VARS)

LOCAL_MODULE := cts-platform-version-check
LOCAL_MODULE_CLASS := ETC
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
# Tag this module as a cts test artifact
LOCAL_COMPATIBILITY_SUITE := cts vts general-tests

cts_platform_version_path := cts/tests/tests/os/assets/platform_versions.txt
cts_platform_version_string := $(shell cat $(cts_platform_version_path))

include $(BUILD_SYSTEM)/base_rules.mk

$(LOCAL_BUILT_MODULE) : $(cts_platform_version_path) build/core/version_defaults.mk
	$(hide) if [ -z "$(findstring $(PLATFORM_VERSION),$(cts_platform_version_string))" ]; then \
		echo "============================================================" 1>&2; \
		echo "Could not find version \"$(PLATFORM_VERSION)\" in CTS platform version file:" 1>&2; \
		echo "" 1>&2; \
		echo "	$(cts_platform_version_path)" 1>&2; \
		echo "" 1>&2; \
		echo "Most likely PLATFORM_VERSION in build/core/version_defaults.mk" 1>&2; \
		echo "has changed and a new version must be added to this CTS file." 1>&2; \
		echo "============================================================" 1>&2; \
		exit 1; \
	fi
	@mkdir -p $(dir $@)
	echo $(cts_platform_version_string) > $@