blob: fa6423ecb8c7f6cce5154c4b1e347829ba13ea35 [file] [log] [blame]
Todd Kennedy5585dd92016-03-29 13:07:01 -07001#
2# Copyright (C) 2016 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH := $(call my-dir)
18
19###########################################################
20# Variant: Privileged app
21
22include $(CLEAR_VARS)
Todd Kennedy20047d72016-04-20 14:07:07 -070023
24LOCAL_MODULE := CtsShimPrivPrebuilt
25LOCAL_MODULE_TAGS := optional
Todd Kennedy5585dd92016-03-29 13:07:01 -070026# this needs to be a privileged application
27LOCAL_PRIVILEGED_MODULE := true
Todd Kennedy20047d72016-04-20 14:07:07 -070028LOCAL_MODULE_CLASS := APPS
29LOCAL_BUILT_MODULE_STEM := package.apk
30# Make sure the build system doesn't try to resign the APK
31LOCAL_CERTIFICATE := PRESIGNED
Todd Kennedyffe4fcb2016-05-03 11:11:39 -070032LOCAL_DEX_PREOPT := false
Todd Kennedy5585dd92016-03-29 13:07:01 -070033
Todd Kennedy20047d72016-04-20 14:07:07 -070034LOCAL_SRC_FILES := CtsShimPriv.apk
Todd Kennedy5585dd92016-03-29 13:07:01 -070035
Todd Kennedy20047d72016-04-20 14:07:07 -070036include $(BUILD_PREBUILT)
Todd Kennedy5585dd92016-03-29 13:07:01 -070037
38
39###########################################################
40# Variant: System app
41
42include $(CLEAR_VARS)
43
Todd Kennedy20047d72016-04-20 14:07:07 -070044LOCAL_MODULE := CtsShimPrebuilt
Todd Kennedy5585dd92016-03-29 13:07:01 -070045LOCAL_MODULE_TAGS := optional
Todd Kennedy20047d72016-04-20 14:07:07 -070046LOCAL_MODULE_CLASS := APPS
47LOCAL_BUILT_MODULE_STEM := package.apk
48# Make sure the build system doesn't try to resign the APK
49LOCAL_CERTIFICATE := PRESIGNED
Todd Kennedyffe4fcb2016-05-03 11:11:39 -070050LOCAL_DEX_PREOPT := false
Todd Kennedy5585dd92016-03-29 13:07:01 -070051
Todd Kennedy20047d72016-04-20 14:07:07 -070052LOCAL_SRC_FILES := CtsShim.apk
Todd Kennedy5585dd92016-03-29 13:07:01 -070053
Todd Kennedy20047d72016-04-20 14:07:07 -070054include $(BUILD_PREBUILT)
Todd Kennedy5585dd92016-03-29 13:07:01 -070055
Dan Willemsen06b93912016-06-08 15:08:04 -070056include $(call all-makefiles-under,$(LOCAL_PATH))