blob: 2cb45514e0614c5960a064f3cda3b751c6be0398 [file] [log] [blame]
Peter Qiu601964b2016-09-26 13:14:13 -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
15LOCAL_PATH:= $(call my-dir)
16
17# Make test APK
18# ============================================================
19include $(CLEAR_VARS)
20
21LOCAL_MODULE_TAGS := tests
22
23LOCAL_SRC_FILES := $(call all-subdir-java-files)
24
25# This list is generated from the java source files in this module
26# The list is a comma separated list of class names with * matching zero or more characters.
27# Example:
28# Input files: src/com/android/server/wifi/Test.java src/com/android/server/wifi/AnotherTest.java
29# Generated exclude list: com.android.server.wifi.Test*,com.android.server.wifi.AnotherTest*
30
31# Filter all src files to just java files
32local_java_files := $(filter %.java,$(LOCAL_SRC_FILES))
33# Transform java file names into full class names.
34# This only works if the class name matches the file name and the directory structure
35# matches the package.
36local_classes := $(subst /,.,$(patsubst src/%.java,%,$(local_java_files)))
37# Utility variables to allow replacing a space with a comma
38comma:= ,
39empty:=
40space:= $(empty) $(empty)
41# Convert class name list to jacoco exclude list
42# This appends a * to all classes and replace the space separators with commas.
43# These patterns will match all classes in this module and their inner classes.
44jacoco_exclude := $(subst $(space),$(comma),$(patsubst %,%*,$(local_classes)))
45
46jacoco_include := android.net.wifi.*
47
48LOCAL_JACK_COVERAGE_INCLUDE_FILTER := $(jacoco_include)
49LOCAL_JACK_COVERAGE_EXCLUDE_FILTER := $(jacoco_exclude)
50
51LOCAL_STATIC_JAVA_LIBRARIES := \
Stephen Chen607c4ac2017-08-18 14:36:40 -070052 android-support-test \
53 core-test-rules \
54 guava \
55 mockito-target-minus-junit4 \
56 frameworks-base-testutils \
57 truth-prebuilt \
Peter Qiu601964b2016-09-26 13:14:13 -070058
59LOCAL_JAVA_LIBRARIES := \
Stephen Chen607c4ac2017-08-18 14:36:40 -070060 android.test.runner \
Paul Duffin2710ca12017-12-05 18:36:56 +000061 android.test.base \
Peter Qiu601964b2016-09-26 13:14:13 -070062
63LOCAL_PACKAGE_NAME := FrameworksWifiApiTests
Anton Hanssond137c872018-02-23 12:57:51 +000064LOCAL_PRIVATE_PLATFORM_APIS := true
Simran Basi473a16e2017-03-15 14:43:58 -070065LOCAL_COMPATIBILITY_SUITE := device-tests
Peter Qiu601964b2016-09-26 13:14:13 -070066
67include $(BUILD_PACKAGE)