1# Copyright (C) 2025 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 file exports the following common variables to be used in storage 17# makefiles: 18# - STORAGE_COMMON_SRCS: Core storage source files list 19# - STORAGE_COMMON_TIPC_SRCS: TIPC related storage source files list 20 21STORAGE_SRC_DIR := $(GET_LOCAL_DIR) 22 23STORAGE_COMMON_SRCS := \ 24 $(STORAGE_SRC_DIR)/block_allocator.c \ 25 $(STORAGE_SRC_DIR)/block_cache.c \ 26 $(STORAGE_SRC_DIR)/block_mac.c \ 27 $(STORAGE_SRC_DIR)/block_map.c \ 28 $(STORAGE_SRC_DIR)/block_set.c \ 29 $(STORAGE_SRC_DIR)/block_tree.c \ 30 $(STORAGE_SRC_DIR)/checkpoint.c \ 31 $(STORAGE_SRC_DIR)/crypt.c \ 32 $(STORAGE_SRC_DIR)/file.c \ 33 $(STORAGE_SRC_DIR)/super.c \ 34 $(STORAGE_SRC_DIR)/transaction.c \ 35 36STORAGE_COMMON_TIPC_SRCS := \ 37 $(STORAGE_SRC_DIR)/block_device_tipc.c \ 38 $(STORAGE_SRC_DIR)/tipc_service.c \ 39 40undefine STORAGE_SRC_DIR 41