blob: 48b57c8ff528eee77870c4d96f70eae91a27b946 [file] [log] [blame]
Makoto Onukief800462016-08-18 16:44:19 -07001# Copyright (C) 2016 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# We build two APKs from the same source files, each with a different set of resources.
16
17LOCAL_PATH:= $(call my-dir)
18
19include $(CLEAR_VARS)
20
21# Tag this module as a cts test artifact
nickrosef1efbc62017-07-05 12:38:06 -070022LOCAL_COMPATIBILITY_SUITE := cts vts general-tests
Makoto Onukief800462016-08-18 16:44:19 -070023
24LOCAL_PACKAGE_NAME := CtsShortcutMultiuserTest
25
26LOCAL_MODULE_TAGS := optional
27
28LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
29
30LOCAL_SRC_FILES := $(call all-java-files-under, src) \
31 $(call all-java-files-under, ../common/src)
32
33LOCAL_STATIC_JAVA_LIBRARIES := \
Brett Chabot01466272019-03-06 15:52:42 -080034 androidx.test.rules \
Aurimas Liutikas7b507c72018-03-29 05:17:04 -070035 androidx.legacy_legacy-support-v4 \
Makoto Onukief800462016-08-18 16:44:19 -070036 mockito-target-minus-junit4 \
Brett Chabot01466272019-03-06 15:52:42 -080037 compatibility-device-util-axt \
38 ctstestrunner-axt \
Makoto Onukief800462016-08-18 16:44:19 -070039 ub-uiautomator \
Paul Duffinfda34ce2017-12-08 00:02:41 +000040 ShortcutManagerTestUtils
Makoto Onukief800462016-08-18 16:44:19 -070041
Paul Duffinb7a13292017-12-15 07:27:19 +000042LOCAL_JAVA_LIBRARIES := android.test.base.stubs
43
Makoto Onukief800462016-08-18 16:44:19 -070044LOCAL_SDK_VERSION := current
45
46include $(BUILD_CTS_PACKAGE)