blob: 4faf1122f68272c367bafa1618ddca3ddf88b854 [file] [log] [blame]
Brett Chabot52525532009-06-26 16:51:44 -07001# Copyright (C) 2009 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
19LOCAL_MODULE_TAGS := tests
20
21LOCAL_SRC_FILES := $(call all-java-files-under, src)
22
23LOCAL_SDK_VERSION := current
Paul Duffin51cd9e82017-03-01 13:21:08 +000024LOCAL_STATIC_JAVA_LIBRARIES := android-support-test legacy-android-test
Brett Chabot52525532009-06-26 16:51:44 -070025
Brett Chabotdd0aa012009-07-10 12:10:53 -040026LOCAL_PACKAGE_NAME := CtsAppAccessData
Brett Chabot52525532009-06-26 16:51:44 -070027
Stuart Scott2ff78ae2016-02-18 19:25:52 -080028# tag this module as a cts test artifact
Simran Basi95a4c0e2017-04-24 12:28:16 -070029LOCAL_COMPATIBILITY_SUITE := cts general-tests
Aaron Holdenc7f3b252015-10-20 11:48:37 -070030
Brett Chabotdd0aa012009-07-10 12:10:53 -040031# although not strictly necessary, sign this app with different cert than CtsAppWithData
Brian Muramatsu29c03502012-02-03 19:05:47 -080032LOCAL_CERTIFICATE := cts/hostsidetests/appsecurity/certs/cts-testkey2
Brett Chabot52525532009-06-26 16:51:44 -070033
Brian Carlstromcb711272012-06-16 23:32:47 -070034LOCAL_DEX_PREOPT := false
35
Stuart Scott0337dbf2015-02-04 10:37:07 -080036include $(BUILD_CTS_SUPPORT_PACKAGE)