blob: faffc4b28a58dd7847b3645979ad5555047eba42 [file] [log] [blame]
Tomasz Wasilczyk347192e2017-04-04 11:13:44 -07001# Copyright (C) 2017 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
17include $(CLEAR_VARS)
18
Tomasz Wasilczyk6b4b6462017-07-19 10:52:28 -070019LOCAL_PACKAGE_NAME := BroadcastRadioTests
Tomasz Wasilczyk347192e2017-04-04 11:13:44 -070020
Tomasz Wasilczyk40ce3002017-06-09 13:47:04 -070021LOCAL_PRIVILEGED_MODULE := true
22LOCAL_CERTIFICATE := platform
Tomasz Wasilczyk347192e2017-04-04 11:13:44 -070023LOCAL_MODULE_TAGS := tests
24# TODO(b/13282254): uncomment when b/13282254 is fixed
25# LOCAL_SDK_VERSION := current
Anton Hanssond137c872018-02-23 12:57:51 +000026LOCAL_PRIVATE_PLATFORM_APIS := true
Tomasz Wasilczyk347192e2017-04-04 11:13:44 -070027
Brett Chabot502ec7a2019-03-01 14:43:20 -080028LOCAL_STATIC_JAVA_LIBRARIES := compatibility-device-util-axt androidx.test.rules testng
Tomasz Wasilczyk347192e2017-04-04 11:13:44 -070029
Paul Duffin2710ca12017-12-05 18:36:56 +000030LOCAL_JAVA_LIBRARIES := android.test.base
31
Tomasz Wasilczyk347192e2017-04-04 11:13:44 -070032LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
33LOCAL_SRC_FILES := $(call all-java-files-under, src)
34
35LOCAL_DEX_PREOPT := false
36LOCAL_PROGUARD_ENABLED := disabled
37
38include $(BUILD_PACKAGE)