# # Copyright (C) 2018 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ############################################################# # Build test package for Car Notification lib. # ############################################################# LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_PACKAGE_NAME := CarNotificationTest LOCAL_PRIVATE_PLATFORM_APIS := true LOCAL_PROGUARD_ENABLED := disabled LOCAL_STATIC_ANDROID_LIBRARIES += CarNotificationLib LOCAL_USE_AAPT2 := true LOCAL_MODULE_TAGS := optional include $(BUILD_PACKAGE) ############################################################### # Car Notification Robolectric test target. # ############################################################### include $(CLEAR_VARS) LOCAL_MODULE := CarNotificationRoboTests LOCAL_MODULE_CLASS := JAVA_LIBRARIES LOCAL_SRC_FILES := $(call all-java-files-under, src) LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res LOCAL_JAVA_RESOURCE_DIRS := config LOCAL_JAVA_LIBRARIES := \ robolectric_android-all-stub \ Robolectric_all-target \ mockito-robolectric-prebuilt \ truth-prebuilt \ testng \ android.car LOCAL_INSTRUMENTATION_FOR := CarNotificationTest LOCAL_MODULE_TAGS := optional # Generate test_config.properties include external/robolectric-shadows/gen_test_config.mk include $(BUILD_STATIC_JAVA_LIBRARY) ############################################################### # Car Notification runner target to run the previous target. # ############################################################### include $(CLEAR_VARS) LOCAL_MODULE := RunCarNotificationRoboTests LOCAL_JAVA_LIBRARIES := \ Robolectric_all-target \ robolectric_android-all-stub \ mockito-robolectric-prebuilt \ truth-prebuilt \ testng \ CarNotificationRoboTests \ android.car LOCAL_TEST_PACKAGE := CarNotificationTest LOCAL_INSTRUMENT_SOURCE_DIRS := $(dir $(LOCAL_PATH))../src include external/robolectric-shadows/run_robotests.mk