blob: d78ddacacea4ae21d79368c1fddab720e9242689 [file] [log] [blame]
Keun young Park81687a32011-12-06 12:17:55 -08001# Copyright (C) 2012 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
15LOCAL_PATH:= $(call my-dir)
16include $(CLEAR_VARS)
17
18# don't include this package in any target
19LOCAL_MODULE_TAGS := optional
20
21LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
22
Unsuk Jung2a3bf432014-10-09 00:59:51 -070023# Include both the 32 and 64 bit versions
24LOCAL_MULTILIB := both
25
Stuart Scotta132af62013-11-07 10:30:32 -080026LOCAL_STATIC_JAVA_LIBRARIES := ctstestrunner ctsdeviceutil
Keun young Parka06798f2012-07-12 12:56:04 -070027
Keun young Park91da4972012-01-18 14:47:14 -080028LOCAL_JNI_SHARED_LIBRARIES := libctsmediastress_jni
29
Keun young Park81687a32011-12-06 12:17:55 -080030LOCAL_SRC_FILES := $(call all-java-files-under, src)
31
32LOCAL_PACKAGE_NAME := CtsMediaStressTestCases
33
34LOCAL_SDK_VERSION := current
35
Jed Estep90cbf472015-10-20 10:19:39 -070036cts_runtime_hint := 170
37
Keun young Park81687a32011-12-06 12:17:55 -080038include $(BUILD_CTS_PACKAGE)
Keun young Park91da4972012-01-18 14:47:14 -080039
40include $(call all-makefiles-under,$(LOCAL_PATH))
41