1# Copyright (C) 2018 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# 15 16# This host test is to test the implementation for mock secure storage 17# interface. 18HOST_TEST := mock_storage_test 19 20HOST_SRCS += \ 21 trusty/user/app/storage/test/storage-unittest/main.c \ 22 23HOST_INCLUDE_DIRS += \ 24 lib/include \ 25 lib/interface/storage/include \ 26 27HOST_FLAGS := \ 28 -Wno-deprecated-declarations \ 29 -DSTORAGE_FAKE \ 30 31HOST_DEPS := \ 32 trusty/user/base/host/unittest \ 33 34include trusty/user/app/storage/storage_mock/add_mock_storage.mk 35include trusty/kernel/make/host_test.mk 36