blob: 936a35ea32f66f4f262ba55cdbf3a186fd05dd69 [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
Stuart Scotta132af62013-11-07 10:30:32 -080024LOCAL_STATIC_JAVA_LIBRARIES := ctsdeviceutil ctstestserver ctstestrunner
Phil Dubach10aacdd2009-07-09 18:18:42 -070025
Marco Nelissend04da012014-05-01 10:15:03 -070026LOCAL_JNI_SHARED_LIBRARIES := libctsmediacodec_jni
27
Phil Dubach10aacdd2009-07-09 18:18:42 -070028LOCAL_SRC_FILES := $(call all-java-files-under, src)
29
30LOCAL_PACKAGE_NAME := CtsMediaTestCases
31
Brett Chabota6ea2482014-01-09 14:32:20 -080032# uncomment when b/13249737 is fixed
Brett Chabot8ab99212009-09-11 15:26:23 -070033#LOCAL_SDK_VERSION := current
Brett Chabota6ea2482014-01-09 14:32:20 -080034LOCAL_JAVA_LIBRARIES += android.test.runner
Phil Dubach10aacdd2009-07-09 18:18:42 -070035
Brian Muramatsu5df641c2011-12-28 15:46:57 -080036include $(BUILD_CTS_PACKAGE)
Marco Nelissend04da012014-05-01 10:15:03 -070037
38include $(call all-makefiles-under,$(LOCAL_PATH))