blob: b827bdf11db9b581ff1f10e2bd2e5d11e348b202 [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 Kennedy5585dd92016-03-29 13:07:01 -070032
Todd Kennedy20047d72016-04-20 14:07:07 -070033LOCAL_SRC_FILES := CtsShimPriv.apk
Todd Kennedy5585dd92016-03-29 13:07:01 -070034
Todd Kennedy20047d72016-04-20 14:07:07 -070035include $(BUILD_PREBUILT)
Todd Kennedy5585dd92016-03-29 13:07:01 -070036
37
38###########################################################
39# Variant: System app
40
41include $(CLEAR_VARS)
42
Todd Kennedy20047d72016-04-20 14:07:07 -070043LOCAL_MODULE := CtsShimPrebuilt
Todd Kennedy5585dd92016-03-29 13:07:01 -070044LOCAL_MODULE_TAGS := optional
Todd Kennedy20047d72016-04-20 14:07:07 -070045LOCAL_MODULE_CLASS := APPS
46LOCAL_BUILT_MODULE_STEM := package.apk
47# Make sure the build system doesn't try to resign the APK
48LOCAL_CERTIFICATE := PRESIGNED
Todd Kennedy5585dd92016-03-29 13:07:01 -070049
Todd Kennedy20047d72016-04-20 14:07:07 -070050LOCAL_SRC_FILES := CtsShim.apk
Todd Kennedy5585dd92016-03-29 13:07:01 -070051
Todd Kennedy20047d72016-04-20 14:07:07 -070052include $(BUILD_PREBUILT)
Todd Kennedy5585dd92016-03-29 13:07:01 -070053