blob: 15237a88b2dc289482ac8ec789208f31609731bf [file] [log] [blame]
Phil Dubach10aacdd2009-07-09 18:18:42 -07001# Copyright (C) 2008 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)
16
17include $(CLEAR_VARS)
18
Brett Chabot5a546332009-08-28 12:22:23 -070019# don't include this package in any target
Brett Chabotf9e03e12009-08-13 20:55:28 -070020LOCAL_MODULE_TAGS := optional
Brett Chabot5a546332009-08-28 12:22:23 -070021# and when built explicitly put it in the data partition
22LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
Phil Dubach10aacdd2009-07-09 18:18:42 -070023
Unsuk Jung2a3bf432014-10-09 00:59:51 -070024# include both the 32 and 64 bit versions
25LOCAL_MULTILIB := both
26
Stuart Scotta132af62013-11-07 10:30:32 -080027LOCAL_STATIC_JAVA_LIBRARIES := ctsdeviceutil ctstestserver ctstestrunner
Phil Dubach10aacdd2009-07-09 18:18:42 -070028
Marco Nelissend04da012014-05-01 10:15:03 -070029LOCAL_JNI_SHARED_LIBRARIES := libctsmediacodec_jni
30
Phil Dubach10aacdd2009-07-09 18:18:42 -070031LOCAL_SRC_FILES := $(call all-java-files-under, src)
32
33LOCAL_PACKAGE_NAME := CtsMediaTestCases
34
Brett Chabota6ea2482014-01-09 14:32:20 -080035# uncomment when b/13249737 is fixed
Brett Chabot8ab99212009-09-11 15:26:23 -070036#LOCAL_SDK_VERSION := current
Brett Chabota6ea2482014-01-09 14:32:20 -080037LOCAL_JAVA_LIBRARIES += android.test.runner
Phil Dubach10aacdd2009-07-09 18:18:42 -070038
Brian Muramatsu5df641c2011-12-28 15:46:57 -080039include $(BUILD_CTS_PACKAGE)
Marco Nelissend04da012014-05-01 10:15:03 -070040
41include $(call all-makefiles-under,$(LOCAL_PATH))