# Copyright (C) 2025 The Android Open Source Project
#
# 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.
#
LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
MODULE_SRCS += \
$(LOCAL_DIR)/src/lib.rs \
MODULE_CRATE_NAME := authmgr_fe
MODULE_LIBRARY_DEPS += \
$(
call FIND_CRATE,ciborium) \
$(
call FIND_CRATE,coset) \
$(
call FIND_CRATE,libc) \
$(
call FIND_CRATE,log) \
frameworks/native/libs/binder/trusty/rust \
frameworks/native/libs/binder/trusty/rust/rpcbinder \
packages/modules/Virtualization/libs/dice/open_dice \
trusty/kernel/lib/shared/peer_id/rust \
trusty/user/app/sample/hwcryptohal/aidl/rust \
trusty/user/base/interface/authmgr/rust \
trusty/user/base/interface/binder_accessor \
trusty/user/base/interface/secure_storage/rust \
trusty/user/base/lib/authgraph-rust/boringssl \
trusty/user/base/lib/authgraph-rust/tests \
trusty/user/base/lib/authmgr-common-rust \
trusty/user/base/lib/authmgr-common-util-rust \
trusty/user/base/lib/authmgr-fe-core-rust \
trusty/user/base/lib/hwbcc/rust \
trusty/user/base/lib/pvmdice \
trusty/user/base/lib/service_manager/client \
trusty/user/base/lib/tipc/rust \
trusty/user/base/lib/trusty-log \
trusty/user/base/lib/trusty-std \
trusty/user/base/lib/vmm_obj/rust \
MODULE_BINDGEN_ALLOW_VARS := \
TRUSTY_AT_INSTANCE_ID_PTR \
TRUSTY_AT_INSTANCE_ID_SIZE \
MODULE_BINDGEN_SRC_HEADER := $(LOCAL_DIR)/bindings.h
ifeq (true,$(
call TOBOOL,$(AUTHMGRFE_ACCESSOR_DEVICESTATE)))
MODULE_RUSTFLAGS += \
--cfg
'feature="authmgrfe_accessor_devicestate"' \
endif
ifeq (true,$(
call TOBOOL,$(AUTHMGRFE_ACCESSOR_STORAGE)))
MODULE_RUSTFLAGS += \
--cfg
'feature="authmgrfe_accessor_storage"' \
endif
ifeq (true,$(
call TOBOOL,$(AUTHMGRFE_ACCESSOR_HWCRYPTO)))
MODULE_RUSTFLAGS += \
--cfg
'feature="authmgrfe_accessor_hwcrypto"' \
endif
AUTHMGRFE_FAKE_DICE_CHAIN ?=
0
ifeq (true,$(
call TOBOOL,$(AUTHMGRFE_FAKE_DICE_CHAIN)))
MODULE_RUSTFLAGS += \
--cfg
'feature="authmgrfe_fake_dice_chain"' \
endif
ifeq (true,$(
call TOBOOL,$(AUTHMGRFE_LAZY_PHASE_1)))
MODULE_RUSTFLAGS += \
--cfg
'feature="authmgrfe_lazy_phase_1"' \
endif
ifeq (true,$(
call TOBOOL,$(AUTHMGR_MOCK_TRANSPORT_ID)))
MODULE_RUSTFLAGS += \
--cfg
'feature="authmgr_mock_transport_id"' \
endif
MODULE_RUST_TESTS := true
MANIFEST := $(LOCAL_DIR)/manifest.json
include make/library.mk