Ashita Sriraman | 48813e0 | 2018-01-17 10:27:29 -0800 | [diff] [blame] | 1 | # Copyright (C) 2018 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 | |
| 18 | LOCAL_PACKAGE_NAME := SettingsUITests |
Anton Hansson | d42d31e | 2018-02-28 11:26:29 +0000 | [diff] [blame^] | 19 | LOCAL_PRIVATE_PLATFORM_APIS := true |
Ashita Sriraman | 48813e0 | 2018-01-17 10:27:29 -0800 | [diff] [blame] | 20 | LOCAL_COMPATIBILITY_SUITE := device-tests |
| 21 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 22 | LOCAL_MODULE_TAGS := tests |
Fan Zhang | 7576e72 | 2018-01-29 09:53:26 -0800 | [diff] [blame] | 23 | |
| 24 | LOCAL_JAVA_LIBRARIES := \ |
| 25 | android.test.runner \ |
| 26 | android.test.base |
| 27 | |
Ashita Sriraman | 48813e0 | 2018-01-17 10:27:29 -0800 | [diff] [blame] | 28 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Fan Zhang | 7576e72 | 2018-01-29 09:53:26 -0800 | [diff] [blame] | 29 | android-support-test \ |
Michael Rosenfeld | e1bb0c2 | 2018-01-18 11:11:39 -0800 | [diff] [blame] | 30 | app-helpers-core \ |
Ashita Sriraman | 48813e0 | 2018-01-17 10:27:29 -0800 | [diff] [blame] | 31 | launcher-helper-lib \ |
Ashita Sriraman | 48813e0 | 2018-01-17 10:27:29 -0800 | [diff] [blame] | 32 | metrics-helper-lib \ |
| 33 | platform-test-annotations \ |
Fan Zhang | 7576e72 | 2018-01-29 09:53:26 -0800 | [diff] [blame] | 34 | settings-helper \ |
| 35 | sysui-helper \ |
| 36 | timeresult-helper-lib \ |
| 37 | truth-prebuilt \ |
| 38 | ub-uiautomator \ |
Ashita Sriraman | 48813e0 | 2018-01-17 10:27:29 -0800 | [diff] [blame] | 39 | |
| 40 | #LOCAL_SDK_VERSION := current |
| 41 | |
| 42 | include $(BUILD_PACKAGE) |