blob: 1255032f59f0e79533e42e1968f470c7c649f609 [file] [log] [blame]
Stuart Scottd35f8eb2014-01-13 17:41:01 -08001# Copyright (C) 2014 The Android Open Source Project
Dan Bornsteina99a3a52009-11-17 14:08:48 -08002#
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
Stuart Scott5ae19e12015-06-04 08:59:58 -070019# Don't include this package in any target
20LOCAL_MODULE_TAGS := tests
Dan Bornsteina99a3a52009-11-17 14:08:48 -080021# When built, explicitly put it in the data partition.
22LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
23
Stuart Scott5ae19e12015-06-04 08:59:58 -070024LOCAL_DEX_PREOPT := false
25
26LOCAL_PROGUARD_ENABLED := disabled
27
28LOCAL_STATIC_JAVA_LIBRARIES := compatibility-device-util android-support-test
Keun young Parka06798f2012-07-12 12:56:04 -070029
Dan Bornsteina99a3a52009-11-17 14:08:48 -080030LOCAL_SRC_FILES := $(call all-java-files-under, src)
31
Stuart Scott5ae19e12015-06-04 08:59:58 -070032# Tag this module as a cts_v2 test artifact
33LOCAL_COMPATIBILITY_SUITE := cts_v2
34
Stuart Scottd35f8eb2014-01-13 17:41:01 -080035LOCAL_PACKAGE_NAME := CtsSampleDeviceTestCases
36
Dan Bornsteina99a3a52009-11-17 14:08:48 -080037LOCAL_SDK_VERSION := current
38
Stuart Scott5ae19e12015-06-04 08:59:58 -070039include $(BUILD_PACKAGE)