The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 1 | # 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 | |
| 15 | LOCAL_PATH:= $(call my-dir) |
| 16 | include $(CLEAR_VARS) |
| 17 | |
Phil Dubach | 231bd25 | 2009-04-20 17:57:22 -0700 | [diff] [blame] | 18 | LOCAL_MODULE_TAGS := tests |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 19 | |
Scott Su | 0bcd3d0 | 2009-04-14 23:11:35 -0700 | [diff] [blame] | 20 | LOCAL_SRC_FILES := $(call all-java-files-under, src)\ |
Stephen Hines | 4aeee06 | 2011-02-24 18:30:30 -0800 | [diff] [blame] | 21 | $(call all-renderscript-files-under, src)\ |
Scott Su | 0bcd3d0 | 2009-04-14 23:11:35 -0700 | [diff] [blame] | 22 | src/android/app/cts/ISecondary.aidl\ |
Kenny Root | fd41eda | 2013-08-30 14:32:57 -0700 | [diff] [blame] | 23 | src/android/os/cts/IEmptyService.aidl\ |
| 24 | src/android/security/cts/activity/ISecureRandomService.aidl |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 25 | |
| 26 | LOCAL_JAVA_LIBRARIES := android.test.runner |
| 27 | |
Brian Muramatsu | 8c005b3 | 2010-07-07 16:43:01 -0700 | [diff] [blame] | 28 | LOCAL_JNI_SHARED_LIBRARIES := libcts_jni |
| 29 | |
Dianne Hackborn | c6dd74e | 2009-11-01 21:18:44 -0800 | [diff] [blame] | 30 | # Resource unit tests use a private locale and some densities |
Dianne Hackborn | 63d85b5 | 2012-03-09 13:18:36 -0800 | [diff] [blame] | 31 | LOCAL_AAPT_FLAGS = -c xx_YY -c cs -c small -c normal -c large -c xlarge \ |
| 32 | -c 320dpi -c 240dpi -c 160dpi -c 32dpi \ |
Dianne Hackborn | 49a978a | 2011-11-11 18:19:25 -0800 | [diff] [blame] | 33 | --preferred-configurations 320dpi --preferred-configurations 240dpi \ |
| 34 | --preferred-configurations 160dpi --preferred-configurations 32dpi |
Brett Chabot | e947cdc | 2009-07-28 19:32:53 -0700 | [diff] [blame] | 35 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 36 | LOCAL_PACKAGE_NAME := CtsTestStubs |
| 37 | |
Brian Muramatsu | 5daf323 | 2012-03-23 18:50:35 -0700 | [diff] [blame] | 38 | LOCAL_STATIC_JAVA_LIBRARIES := ctsutil ctstestserver ctstestrunner |
Brian Muramatsu | 471beda | 2012-03-05 18:46:33 -0800 | [diff] [blame] | 39 | |
Brian Carlstrom | cb71127 | 2012-06-16 23:32:47 -0700 | [diff] [blame] | 40 | LOCAL_DEX_PREOPT := false |
| 41 | |
The Android Open Source Project | f805710 | 2009-03-15 16:47:16 -0700 | [diff] [blame] | 42 | include $(BUILD_PACKAGE) |
| 43 | |
| 44 | # Build the test APK using its own makefile, and any other CTS-related packages |
| 45 | include $(call all-makefiles-under,$(LOCAL_PATH)) |