1# Copyright (c) 2024 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14import("//build/test.gni") 15import("//foundation/multimedia/media_library/media_library.gni") 16 17ohos_fuzztest("MediaLibraryMetaRecoverFuzzTest") { 18 module_out_path = "media_library/media_library" 19 fuzz_config_file = "." 20 21 include_dirs = [ 22 ".", 23 "${MEDIALIB_INNERKITS_PATH}/medialibrary_data_extension/include", 24 "${MEDIALIB_INNERKITS_PATH}/media_library_helper/include", 25 "../../../../../../../../distributeddatamgr/relational_store/interfaces/inner_api/rdb/include", 26 ] 27 28 sources = [ "./medialibrarymetarecover_fuzzer.cpp" ] 29 30 deps = [ 31 "${MEDIALIB_INNERKITS_PATH}/media_library_helper:media_library", 32 "${MEDIALIB_INNERKITS_PATH}/medialibrary_data_extension:medialibrary_data_extension", 33 ] 34 35 external_deps = [ 36 "ability_base:want", 37 "ability_base:zuri", 38 "ability_runtime:ability_context_native", 39 "ability_runtime:ability_manager", 40 "ability_runtime:app_context", 41 "ability_runtime:dataobs_manager", 42 "ability_runtime:extensionkit_native", 43 "ability_runtime:runtime", 44 "c_utils:utils", 45 "common_event_service:cesfwk_innerkits", 46 "data_share:datashare_common", 47 "data_share:datashare_provider", 48 "device_manager:devicemanagersdk", 49 "napi:ace_napi", 50 "relational_store:native_rdb", 51 "relational_store:rdb_data_share_adapter", 52 ] 53 54 defines = [] 55 56 if (defined(global_parts_info) && 57 defined(global_parts_info.filemanagement_dfs_service)) { 58 defines += [ "CLOUD_SYNC_MANAGER" ] 59 external_deps += [ "dfs_service:cloudsync_kit_inner" ] 60 } 61} 62