blob: fa492b9890d03cf0080b4841b9668d84621bbb47 [file] [log] [blame]
# 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 := \
android-support-test \
compatibility-device-util \
ctstestrunner \
guava \
junit \
legacy-android-test
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/IParcelExceptionService.aidl \
LOCAL_PACKAGE_NAME := CtsOsTestCases
# Tag this module as a cts test artifact
LOCAL_COMPATIBILITY_SUITE := cts general-tests
# uncomment when b/13282254 is fixed
#LOCAL_SDK_VERSION := current
LOCAL_JAVA_LIBRARIES += android.test.runner
# 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 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) > $@