diff --git a/platform/fwk/Makefile b/platform/fwk/Makefile index 9e3812534f4de399ab03ef94e861973460174139..26c9c6359702156217a52fa2ed8d0c1976257bd6 100644 --- a/platform/fwk/Makefile +++ b/platform/fwk/Makefile @@ -1,5 +1,5 @@ # -# Copyright (c) 2020-2021 Huawei Device Co., Ltd. +# Copyright (c) 2020-2022 Huawei Device Co., Ltd. # # This software is licensed under the terms of the GNU General Public # License version 2, as published by the Free Software Foundation, and @@ -18,6 +18,7 @@ obj-y += $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_common.o \ $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_device.o \ $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_event.o \ $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_manager.o \ - $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_queue.o + $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_queue.o \ + $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/fwk/platform_dumper.o obj-y += ./plat_common.o diff --git a/test/Makefile b/test/Makefile index e1626780e2903d90f21380e8ca8ba453acf3fd97..9142ab89fe64cc4d1db51f6660cf3ee29c93f531 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Huawei Device Co., Ltd. +# Copyright (c) 2021-2022 Huawei Device Co., Ltd. # # This software is licensed under the terms of the GNU General Public # License version 2, as published by the Free Software Foundation, and @@ -30,6 +30,7 @@ obj-$(CONFIG_DRIVERS_HDF_PLATFORM) += $(HDF_FRAMWORK_TEST_ROOT)/platform/common/ $(HDF_FRAMWORK_TEST_ROOT)/platform/common/platform_event_test.o \ $(HDF_FRAMWORK_TEST_ROOT)/platform/common/platform_manager_test.o \ $(HDF_FRAMWORK_TEST_ROOT)/platform/common/platform_queue_test.o \ + $(HDF_FRAMWORK_TEST_ROOT)/platform/common/platform_dumper_test.o \ $(HDF_FRAMWORK_TEST_ROOT)/platform/entry/hdf_platform_core_entry_test.o obj-$(CONFIG_DRIVERS_HDF_PLATFORM_GPIO) += $(HDF_FRAMWORK_TEST_ROOT)/platform/common/gpio_test.o \