# Copyright (c) 2022-2024 Huawei Device Co., Ltd. # 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. import("//build/test.gni") import("//foundation/ability/ability_runtime/ability_runtime.gni") module_output_path = "ability_runtime/mstabilitymgrservice" ohos_moduletest("running_infos_module_test") { module_out_path = module_output_path cflags_cc = [] include_dirs = [ "${ability_runtime_test_path}/moduletest/mock/include", "${ability_runtime_test_path}/mock/common/include", "//third_party/jsoncpp/include", "${ability_runtime_path}/interfaces/kits/native/ability/native/distributed_ability_runtime", "${ability_runtime_innerkits_path}/dataobs_manager/include", "${distributedschedule_path}/safwk/interfaces/innerkits/safwk", ] sources = [ "running_infos_module_test.cpp" ] sources += [ "${ability_runtime_services_path}/abilitymgr/src/ability_bundle_event_callback.cpp", "${ability_runtime_services_path}/abilitymgr/src/ability_event_util.cpp", "${ability_runtime_services_path}/abilitymgr/src/ability_manager_service.cpp", "${ability_runtime_services_path}/abilitymgr/src/app_exit_reason_data_manager.cpp", "${ability_runtime_services_path}/abilitymgr/src/assert_fault_callback_death_mgr.cpp", "${ability_runtime_services_path}/abilitymgr/src/assert_fault_proxy.cpp", "${ability_runtime_services_path}/abilitymgr/src/scene_board/ui_ability_lifecycle_manager.cpp", "${ability_runtime_services_path}/abilitymgr/src/start_ability_handler.cpp", "${ability_runtime_services_path}/abilitymgr/src/start_ability_handler/start_ability_sandbox_savefile.cpp", "${ability_runtime_services_path}/abilitymgr/src/sub_managers_helper.cpp", "${ability_runtime_services_path}/abilitymgr/src/window_focus_changed_listener.cpp", "${ability_runtime_test_path}/mock/common/src/mock_native_token.cpp", "${ability_runtime_test_path}/mock/services_abilitymgr_test/libs/sa_mgr/src/sa_mgr_client_mock.cpp", "${ability_runtime_test_path}/moduletest/mock/src/mock_app_mgr_client.cpp", "${ability_runtime_test_path}/moduletest/mock/src/mock_bundle_mgr.cpp", ] configs = [ "${ability_runtime_test_path}/moduletest:aafwk_module_test_config", "${ability_runtime_innerkits_path}/ability_manager:ability_manager_public_config", "${ability_runtime_test_path}/mock/services_abilitymgr_test/libs/sa_mgr:sa_mgr_mock_config", "${ability_runtime_innerkits_path}/app_manager:appmgr_sdk_config", ] cflags = [] if (target_cpu == "arm") { cflags += [ "-DBINDER_IPC_32BIT" ] } deps = [ "${ability_runtime_innerkits_path}/ability_manager:ability_start_setting", "${ability_runtime_innerkits_path}/ability_manager:process_options", "${ability_runtime_innerkits_path}/app_manager:app_manager", "${ability_runtime_innerkits_path}/uri_permission:uri_permission_mgr", "${ability_runtime_native_path}/ability/native:abilitykit_native", "${ability_runtime_path}/utils/server/startup:startup_util", "${ability_runtime_services_path}/abilitymgr:abilityms", "${ability_runtime_services_path}/abilitymgr:mission_list", "${ability_runtime_services_path}/common:event_report", "${ability_runtime_services_path}/common:perm_verification", "${ability_runtime_services_path}/common:task_handler_wrap", "${distributedschedule_path}/safwk/interfaces/innerkits/safwk:system_ability_fwk", "${distributedschedule_path}/samgr/interfaces/innerkits/samgr_proxy:samgr_proxy", "//third_party/googletest:gmock_main", "//third_party/googletest:gtest_main", "//third_party/icu/icu4c:shared_icuuc", "//third_party/jsoncpp:jsoncpp", ] if (ability_runtime_graphics) { deps += [ "${ace_engine_path}/interfaces/inner_api/ui_service_manager:ui_service_mgr", "${global_path}/i18n/frameworks/intl:intl_util", "${multimedia_path}/interfaces/innerkits:image_native", "//third_party/icu/icu4c:shared_icuuc", ] } external_deps = [ "ability_base:configuration", "ability_base:view_data", "ability_base:want", "ability_base:zuri", "ability_runtime:ability_deps_wrapper", "ability_runtime:ability_manager", "access_token:libaccesstoken_sdk", "access_token:libnativetoken", "access_token:libtoken_setproc", "bundle_framework:appexecfwk_base", "bundle_framework:appexecfwk_core", "c_utils:utils", "common_event_service:cesfwk_core", "common_event_service:cesfwk_innerkits", "dsoftbus:softbus_client", "ffrt:libffrt", "hicollie:libhicollie", "hilog:libhilog", "hisysevent:libhisysevent", "hitrace:hitrace_meter", "init:libbeget_proxy", "init:libbegetutil", "ipc:ipc_core", "kv_store:distributeddata_inner", "napi:ace_napi", "relational_store:native_appdatafwk", "relational_store:native_dataability", "relational_store:native_rdb", "safwk:system_ability_fwk", "window_manager:libmodal_system_ui_extension_client", "window_manager:libwsutils", "window_manager:sms", ] if (resource_schedule_service_enable) { cflags_cc += [ "-RESOURCE_SCHEDULE_SERVICE_ENABLE" ] external_deps += [ "resource_schedule_service:ressched_client" ] } if (background_task_mgr_continuous_task_enable) { external_deps += [ "background_task_mgr:bgtaskmgr_innerkits" ] } if (ability_runtime_graphics) { external_deps += [ "input:libmmi-client", "window_manager:libdm", ] } if (os_dlp_part_enabled) { cflags_cc += [ "-DWITH_DLP" ] } } group("moduletest") { testonly = true deps = [ # ":running_infos_module_test" ] }