Brett Chabot | caf30a1 | 2011-07-28 19:33:22 -0700 | [diff] [blame] | 1 | # Copyright (C) 2011 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 | LOCAL_PATH := $(call my-dir) |
| 16 | include $(CLEAR_VARS) |
| 17 | |
Adam Lesinski | 38e8966 | 2016-06-24 15:00:11 -0700 | [diff] [blame] | 18 | LOCAL_USE_AAPT2 := true |
Brett Chabot | caf30a1 | 2011-07-28 19:33:22 -0700 | [diff] [blame] | 19 | LOCAL_MODULE_TAGS := tests |
| 20 | |
Sid Soundararajan | b58c46a | 2016-01-26 15:39:27 -0800 | [diff] [blame] | 21 | LOCAL_JACK_FLAGS := --multi-dex native |
Colin Cross | 254a418 | 2017-01-20 14:46:38 -0800 | [diff] [blame] | 22 | LOCAL_DX_FLAGS := --multi-dex |
Sid Soundararajan | b58c46a | 2016-01-26 15:39:27 -0800 | [diff] [blame] | 23 | |
Adam Lesinski | 38e8966 | 2016-06-24 15:00:11 -0700 | [diff] [blame] | 24 | LOCAL_PACKAGE_NAME := SystemUITests |
Anton Hansson | d137c87 | 2018-02-23 12:57:51 +0000 | [diff] [blame] | 25 | LOCAL_PRIVATE_PLATFORM_APIS := true |
Simran Basi | 473a16e | 2017-03-15 14:43:58 -0700 | [diff] [blame] | 26 | LOCAL_COMPATIBILITY_SUITE := device-tests |
Winson | 190fe3bf | 2015-10-20 14:57:24 -0700 | [diff] [blame] | 27 | |
Adam Lesinski | 38e8966 | 2016-06-24 15:00:11 -0700 | [diff] [blame] | 28 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
Jason Monk | ae7ced2 | 2018-08-22 16:56:58 -0400 | [diff] [blame] | 29 | SystemUI-tests |
Brett Chabot | caf30a1 | 2011-07-28 19:33:22 -0700 | [diff] [blame] | 30 | |
Jason Monk | 1fc931a | 2017-12-14 13:22:58 -0500 | [diff] [blame] | 31 | LOCAL_MULTILIB := both |
| 32 | |
| 33 | LOCAL_JNI_SHARED_LIBRARIES := \ |
| 34 | libdexmakerjvmtiagent \ |
| 35 | libmultiplejvmtiagentsinterferenceagent |
| 36 | |
Paul Duffin | b866307 | 2017-12-08 00:02:42 +0000 | [diff] [blame] | 37 | LOCAL_JAVA_LIBRARIES := \ |
| 38 | android.test.runner \ |
| 39 | telephony-common \ |
Paul Duffin | b866307 | 2017-12-08 00:02:42 +0000 | [diff] [blame] | 40 | android.test.base \ |
Adam Lesinski | 38e8966 | 2016-06-24 15:00:11 -0700 | [diff] [blame] | 41 | |
Jason Monk | 23f85ec | 2017-01-31 14:29:32 -0500 | [diff] [blame] | 42 | LOCAL_AAPT_FLAGS := --extra-packages com.android.systemui:com.android.keyguard |
Adam Lesinski | 38e8966 | 2016-06-24 15:00:11 -0700 | [diff] [blame] | 43 | |
Brett Chabot | caf30a1 | 2011-07-28 19:33:22 -0700 | [diff] [blame] | 44 | # sign this with platform cert, so this test is allowed to inject key events into |
| 45 | # UI it doesn't own. This is necessary to allow screenshots to be taken |
| 46 | LOCAL_CERTIFICATE := platform |
| 47 | |
Allen Hair | 8fef05f | 2016-08-29 12:21:02 -0700 | [diff] [blame] | 48 | # Provide jack a list of classes to exclude from code coverage. |
| 49 | # This is needed because the SystemUITests compile SystemUI source directly, rather than using |
| 50 | # LOCAL_INSTRUMENTATION_FOR := SystemUI. |
| 51 | # |
| 52 | # We want to exclude the test classes from code coverage measurements, but they share the same |
| 53 | # package as the rest of SystemUI so they can't be easily filtered by package name. |
| 54 | # |
| 55 | # Generate a comma separated list of patterns based on the test source files under src/ |
| 56 | # SystemUI classes are in ../src/ so they won't be excluded. |
| 57 | # Example: |
| 58 | # Input files: src/com/android/systemui/Test.java src/com/android/systemui/AnotherTest.java |
| 59 | # Generated exclude list: com.android.systemui.Test*,com.android.systemui.AnotherTest* |
| 60 | |
| 61 | # Filter all src files under src/ to just java files |
| 62 | local_java_files := $(filter %.java,$(call all-java-files-under, src)) |
| 63 | # Transform java file names into full class names. |
| 64 | # This only works if the class name matches the file name and the directory structure |
| 65 | # matches the package. |
| 66 | local_classes := $(subst /,.,$(patsubst src/%.java,%,$(local_java_files))) |
| 67 | local_comma := , |
| 68 | local_empty := |
| 69 | local_space := $(local_empty) $(local_empty) |
| 70 | # Convert class name list to jacoco exclude list |
| 71 | # This appends a * to all classes and replace the space separators with commas. |
| 72 | jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes))) |
| 73 | |
Allen Hair | 9aa82fd | 2019-04-01 16:32:00 -0700 | [diff] [blame] | 74 | LOCAL_JACK_COVERAGE_INCLUDE_FILTER := com.android.systemui.*,com.android.keyguard.* |
| 75 | LOCAL_JACK_COVERAGE_EXCLUDE_FILTER := $(jacoco_exclude) |
Allen Hair | 02fd6094 | 2016-08-25 16:06:26 -0700 | [diff] [blame] | 76 | |
Jason Monk | 4f70b9c | 2016-10-26 15:05:42 -0400 | [diff] [blame] | 77 | ifeq ($(EXCLUDE_SYSTEMUI_TESTS),) |
| 78 | include $(BUILD_PACKAGE) |
| 79 | endif |
Allen Hair | 8fef05f | 2016-08-29 12:21:02 -0700 | [diff] [blame] | 80 | |
| 81 | # Reset variables |
| 82 | local_java_files := |
| 83 | local_classes := |
| 84 | local_comma := |
| 85 | local_space := |
| 86 | jacoco_exclude := |