Adnan Begovic | 37fc76f | 2015-05-05 17:37:05 -0700 | [diff] [blame] | 1 | # |
| 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 Begovic | 104a15a | 2015-04-29 17:33:24 -0700 | [diff] [blame] | 16 | LOCAL_PATH:= $(call my-dir) |
| 17 | include $(CLEAR_VARS) |
| 18 | |
| 19 | LOCAL_MODULE_TAGS := tests |
| 20 | |
| 21 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Adnan Begovic | eb17396 | 2016-02-04 16:39:43 -0800 | [diff] [blame] | 22 | org.cyanogenmod.platform.sdk \ |
| 23 | android-support-test |
Adnan Begovic | 104a15a | 2015-04-29 17:33:24 -0700 | [diff] [blame] | 24 | |
Adnan Begovic | ba01275 | 2016-03-03 10:51:57 -0800 | [diff] [blame] | 25 | LOCAL_DEX_PREOPT := false |
| 26 | |
Chris Sarbora | b9d7733 | 2015-08-06 14:14:47 -0700 | [diff] [blame] | 27 | LOCAL_SRC_FILES := $(call all-subdir-java-files, src/) |
Adnan Begovic | 104a15a | 2015-04-29 17:33:24 -0700 | [diff] [blame] | 28 | |
| 29 | LOCAL_PACKAGE_NAME := CMPlatformTests |
| 30 | LOCAL_CERTIFICATE := platform |
Adnan Begovic | e953794 | 2015-07-14 15:05:22 -0700 | [diff] [blame] | 31 | LOCAL_JAVA_LIBRARIES := android.test.runner |
Adnan Begovic | ba01275 | 2016-03-03 10:51:57 -0800 | [diff] [blame] | 32 | LOCAL_PROGUARD_ENABLED := optimization shrinktests |
| 33 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Adnan Begovic | 104a15a | 2015-04-29 17:33:24 -0700 | [diff] [blame] | 34 | |
Adnan Begovic | cf0bfd3 | 2015-06-29 10:44:41 -0700 | [diff] [blame] | 35 | include $(BUILD_PACKAGE) |