blob: 89f9133cd691c771a6358c815cb6a741b7414d3d [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
Jeff Sharkey2af67a92018-04-01 18:25:54 -060020LOCAL_CERTIFICATE := platform
Ashita Sriraman48813e02018-01-17 10:27:29 -080021LOCAL_COMPATIBILITY_SUITE := device-tests
22LOCAL_SRC_FILES := $(call all-java-files-under, src)
23LOCAL_MODULE_TAGS := tests
Fan Zhang7576e722018-01-29 09:53:26 -080024
25LOCAL_JAVA_LIBRARIES := \
26 android.test.runner \
27 android.test.base
28
Ashita Sriraman48813e02018-01-17 10:27:29 -080029LOCAL_STATIC_JAVA_LIBRARIES := \
Fan Zhang7576e722018-01-29 09:53:26 -080030 android-support-test \
Michael Rosenfelde1bb0c22018-01-18 11:11:39 -080031 app-helpers-core \
Ashita Sriraman48813e02018-01-17 10:27:29 -080032 launcher-helper-lib \
Ashita Sriraman48813e02018-01-17 10:27:29 -080033 metrics-helper-lib \
34 platform-test-annotations \
Fan Zhang7576e722018-01-29 09:53:26 -080035 settings-helper \
36 sysui-helper \
37 timeresult-helper-lib \
38 truth-prebuilt \
39 ub-uiautomator \
Ashita Sriraman48813e02018-01-17 10:27:29 -080040
41#LOCAL_SDK_VERSION := current
42
43include $(BUILD_PACKAGE)