blob: 6f03b3f2d2a77b462207d10a691486ea30e9372a [file] [log] [blame]
Ashita Sriraman48813e02018-01-17 10:27:29 -08001# 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
15LOCAL_PATH := $(call my-dir)
16include $(CLEAR_VARS)
17
18LOCAL_PACKAGE_NAME := SettingsUITests
Anton Hanssond42d31e2018-02-28 11:26:29 +000019LOCAL_PRIVATE_PLATFORM_APIS := true
Ashita Sriraman48813e02018-01-17 10:27:29 -080020LOCAL_COMPATIBILITY_SUITE := device-tests
21LOCAL_SRC_FILES := $(call all-java-files-under, src)
22LOCAL_MODULE_TAGS := tests
Fan Zhang7576e722018-01-29 09:53:26 -080023
24LOCAL_JAVA_LIBRARIES := \
25 android.test.runner \
26 android.test.base
27
Ashita Sriraman48813e02018-01-17 10:27:29 -080028LOCAL_STATIC_JAVA_LIBRARIES := \
Fan Zhang7576e722018-01-29 09:53:26 -080029 android-support-test \
Michael Rosenfelde1bb0c22018-01-18 11:11:39 -080030 app-helpers-core \
Ashita Sriraman48813e02018-01-17 10:27:29 -080031 launcher-helper-lib \
Ashita Sriraman48813e02018-01-17 10:27:29 -080032 metrics-helper-lib \
33 platform-test-annotations \
Fan Zhang7576e722018-01-29 09:53:26 -080034 settings-helper \
35 sysui-helper \
36 timeresult-helper-lib \
37 truth-prebuilt \
38 ub-uiautomator \
Ashita Sriraman48813e02018-01-17 10:27:29 -080039
40#LOCAL_SDK_VERSION := current
41
42include $(BUILD_PACKAGE)