blob: ac1ae69fafb105dcff4d1e1c80500dceb0e11466 [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 := \
Sam Mortimer542742b2017-09-18 19:44:11 -070022 org.lineageos.platform.sdk \
Danesh Mb6e71bc2016-06-08 11:25:08 -070023 android-support-test \
24 mockito-target
Adnan Begovic104a15a2015-04-29 17:33:24 -070025
Adnan Begovicba012752016-03-03 10:51:57 -080026LOCAL_DEX_PREOPT := false
27
Chris Sarborab9d77332015-08-06 14:14:47 -070028LOCAL_SRC_FILES := $(call all-subdir-java-files, src/)
Adnan Begovic104a15a2015-04-29 17:33:24 -070029
Sam Mortimer542742b2017-09-18 19:44:11 -070030LOCAL_PACKAGE_NAME := LineagePlatformTests
Adnan Begovic104a15a2015-04-29 17:33:24 -070031LOCAL_CERTIFICATE := platform
Adnan Begovice9537942015-07-14 15:05:22 -070032LOCAL_JAVA_LIBRARIES := android.test.runner
Sam Mortimer1e5a24c2018-08-08 15:12:51 -070033LOCAL_PROGUARD_ENABLED := optimization
Adnan Begovicba012752016-03-03 10:51:57 -080034LOCAL_PROGUARD_FLAG_FILES := proguard.flags
Sam Mortimer283ab862018-08-08 15:12:02 -070035LOCAL_PRIVATE_PLATFORM_APIS := true
Adnan Begovic104a15a2015-04-29 17:33:24 -070036
Adnan Begoviccf0bfd32015-06-29 10:44:41 -070037include $(BUILD_PACKAGE)
Adnan Begovic7a48ce32016-06-06 14:21:43 -070038
Sam Mortimer542742b2017-09-18 19:44:11 -070039# Register as LineageTS
Adnan Begovic7a48ce32016-06-06 14:21:43 -070040include $(CLEAR_VARS)
41LOCAL_MODULE_TAGS := tests
42
43LOCAL_STATIC_JAVA_LIBRARIES := \
Sam Mortimer542742b2017-09-18 19:44:11 -070044 org.lineageos.platform.sdk \
Danesh Mb6e71bc2016-06-08 11:25:08 -070045 android-support-test \
46 mockito-target
Adnan Begovic7a48ce32016-06-06 14:21:43 -070047
48LOCAL_DEX_PREOPT := false
49
50LOCAL_SRC_FILES := $(call all-subdir-java-files, src/)
51
52LOCAL_PACKAGE_NAME := CmtsPlatformSDKTests
53LOCAL_CERTIFICATE := platform
54LOCAL_JAVA_LIBRARIES := android.test.runner
Sam Mortimer1e5a24c2018-08-08 15:12:51 -070055LOCAL_PROGUARD_ENABLED := optimization
Adnan Begovic7a48ce32016-06-06 14:21:43 -070056LOCAL_PROGUARD_FLAG_FILES := proguard.flags
Sam Mortimer542742b2017-09-18 19:44:11 -070057include $(BUILD_LineageTS_PACKAGE)