blob: ae0b0f9326d07e1bbd2538be1b2aa90011fee67f [file] [log] [blame]
Suprabh Shukla021b57a2018-03-08 18:21:50 -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)
16
17include $(CLEAR_VARS)
18
19LOCAL_MODULE_TAGS := tests
Suprabh Shukla021b57a2018-03-08 18:21:50 -080020
21LOCAL_COMPATIBILITY_SUITE := device-tests
22
Suprabh Shukla3c3af142018-03-30 00:28:37 -070023LOCAL_STATIC_JAVA_LIBRARIES := android-support-test ub-uiautomator
Suprabh Shukla2fd43ba2018-03-22 16:57:49 -070024
Suprabh Shukla021b57a2018-03-08 18:21:50 -080025LOCAL_SRC_FILES := $(call all-subdir-java-files)
Suprabh Shukla2fd43ba2018-03-22 16:57:49 -070026LOCAL_SRC_FILES += ../../src/com/android/server/pm/SuspendPackagesTest.java
Suprabh Shukla021b57a2018-03-08 18:21:50 -080027
28LOCAL_PACKAGE_NAME := SuspendTestApp
29LOCAL_DEX_PREOPT := false
30LOCAL_PROGUARD_ENABLED := disabled
31
Suprabh Shukla2fd43ba2018-03-22 16:57:49 -070032LOCAL_PRIVATE_PLATFORM_APIS := true
33
Suprabh Shukla021b57a2018-03-08 18:21:50 -080034include $(BUILD_PACKAGE)