blob: 6adc6859813457cde825f13be5d1b49354f0114c [file] [log] [blame]
Hyunyoung Song170a9f32015-03-02 11:55:42 -08001# Copyright (C) 2015 The Android Open Source Project
Tsu Chiang Chuang8c7a2b72011-05-20 16:17:17 -07002#
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#
Hyunyoung Song170a9f32015-03-02 11:55:42 -080015
16LOCAL_PATH := $(call my-dir)
Vadim Trysheva279b2e2018-06-18 19:14:44 -070017
18#
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070019# Build rule for Launcher3Tests
20#
21include $(CLEAR_VARS)
22
23LOCAL_MODULE_TAGS := tests
24LOCAL_STATIC_JAVA_LIBRARIES := \
Winson Chungf25461c2019-03-11 16:23:45 -070025 androidx.test.runner \
26 androidx.test.rules \
27 androidx.test.uiautomator_uiautomator \
thiruram5e1ecf62019-11-13 17:49:35 -080028 mockito-target-minus-junit4 \
thiruramc1c2bfa2020-02-04 18:56:40 -080029 launcher_log_protos_lite
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070030
vadimt6c2e3b32021-06-11 13:34:57 -070031LOCAL_PRIVATE_PLATFORM_APIS := true
32LOCAL_STATIC_JAVA_LIBRARIES += launcher-aosp-tapl
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070033
Sunny Goyal34ff8cb2020-04-20 14:41:23 -070034LOCAL_SRC_FILES := \
35 $(call all-java-files-under, src) \
36 $(call all-java-files-under, src_common)
37
38
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070039LOCAL_FULL_LIBS_MANIFEST_FILES := $(LOCAL_PATH)/AndroidManifest-common.xml
40
41LOCAL_PACKAGE_NAME := Launcher3Tests
42
43LOCAL_INSTRUMENTATION_FOR := Launcher3
44
yangbill5f0f1ab2021-05-03 15:01:51 +080045LOCAL_TEST_CONFIG := Launcher3Tests.xml
46
47LOCAL_COMPATIBILITY_SUPPORT_FILES := $(call intermediates-dir-for,APPS,Launcher3)/package.apk:Launcher3.apk
48
Bob Badour382a0b62021-04-29 17:50:38 -070049LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
50LOCAL_LICENSE_CONDITIONS := notice
51LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../NOTICE
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070052include $(BUILD_PACKAGE)
vadimt8296c612019-05-29 12:07:55 -070053
54include $(call all-makefiles-under,$(LOCAL_PATH))