blob: e9ae710f50f814617ce0bbdf1cf5313751705ef6 [file] [log] [blame]
Adnan Begovic37fc76f2015-05-05 17:37:05 -07001#
2# Copyright (C) 2015 The CyanogenMod Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
Adnan Begovic104a15a2015-04-29 17:33:24 -070016LOCAL_PATH:= $(call my-dir)
17include $(CLEAR_VARS)
18
19LOCAL_MODULE_TAGS := tests
20
21LOCAL_STATIC_JAVA_LIBRARIES := \
Adnan Begoviceb173962016-02-04 16:39:43 -080022 org.cyanogenmod.platform.sdk \
23 android-support-test
Adnan Begovic104a15a2015-04-29 17:33:24 -070024
Adnan Begovicba012752016-03-03 10:51:57 -080025LOCAL_DEX_PREOPT := false
26
Chris Sarborab9d77332015-08-06 14:14:47 -070027LOCAL_SRC_FILES := $(call all-subdir-java-files, src/)
Adnan Begovic104a15a2015-04-29 17:33:24 -070028
29LOCAL_PACKAGE_NAME := CMPlatformTests
30LOCAL_CERTIFICATE := platform
Adnan Begovice9537942015-07-14 15:05:22 -070031LOCAL_JAVA_LIBRARIES := android.test.runner
Adnan Begovicba012752016-03-03 10:51:57 -080032LOCAL_PROGUARD_ENABLED := optimization shrinktests
33LOCAL_PROGUARD_FLAG_FILES := proguard.flags
Adnan Begovic104a15a2015-04-29 17:33:24 -070034
Adnan Begoviccf0bfd32015-06-29 10:44:41 -070035include $(BUILD_PACKAGE)