1049e185fSopenharmony_ci# Copyright (C) 2023 Huawei Device Co., Ltd. 2049e185fSopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License"); 3049e185fSopenharmony_ci# you may not use this file except in compliance with the License. 4049e185fSopenharmony_ci# You may obtain a copy of the License at 5049e185fSopenharmony_ci# 6049e185fSopenharmony_ci# http://www.apache.org/licenses/LICENSE-2.0 7049e185fSopenharmony_ci# 8049e185fSopenharmony_ci# Unless required by applicable law or agreed to in writing, software 9049e185fSopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS, 10049e185fSopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11049e185fSopenharmony_ci# See the License for the specific language governing permissions and 12049e185fSopenharmony_ci# limitations under the License. 13049e185fSopenharmony_ci 14049e185fSopenharmony_ciimport("//build/ohos.gni") 15049e185fSopenharmony_ciimport("//foundation/multimedia/player_framework/config.gni") 16049e185fSopenharmony_ci 17049e185fSopenharmony_ciconfig("media_engine_histreamer_avmetadatahelper_config") { 18049e185fSopenharmony_ci visibility = [ ":*" ] 19049e185fSopenharmony_ci 20049e185fSopenharmony_ci cflags = [ 21049e185fSopenharmony_ci "-O2", 22049e185fSopenharmony_ci "-fPIC", 23049e185fSopenharmony_ci "-Wall", 24049e185fSopenharmony_ci "-fexceptions", 25049e185fSopenharmony_ci "-fno-rtti", 26049e185fSopenharmony_ci "-Wno-unused-but-set-variable", 27049e185fSopenharmony_ci "-Wno-format", 28049e185fSopenharmony_ci ] 29049e185fSopenharmony_ci cflags_cc = cflags 30049e185fSopenharmony_ci 31049e185fSopenharmony_ci include_dirs = [ 32049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/services/engine/histreamer/avmetadatahelper", 33049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/services/engine/histreamer/utils", 34049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/services/include", 35049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/services/utils/include", 36049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/interfaces/inner_api/native", 37049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/services/services/engine_intf", 38049e185fSopenharmony_ci ] 39049e185fSopenharmony_ci} 40049e185fSopenharmony_ci 41049e185fSopenharmony_ciohos_static_library("media_engine_histreamer_avmetadatahelper") { 42049e185fSopenharmony_ci stack_protector_ret = true 43049e185fSopenharmony_ci sanitize = { 44049e185fSopenharmony_ci integer_overflow = true 45049e185fSopenharmony_ci ubsan = true 46049e185fSopenharmony_ci boundary_sanitize = true 47049e185fSopenharmony_ci cfi = true 48049e185fSopenharmony_ci cfi_cross_dso = true 49049e185fSopenharmony_ci debug = false 50049e185fSopenharmony_ci } 51049e185fSopenharmony_ci sources = [ 52049e185fSopenharmony_ci "av_thumbnail_generator.cpp", 53049e185fSopenharmony_ci "avmetadata_collector.cpp", 54049e185fSopenharmony_ci "avmetadatahelper_impl.cpp", 55049e185fSopenharmony_ci ] 56049e185fSopenharmony_ci 57049e185fSopenharmony_ci configs = [ 58049e185fSopenharmony_ci ":media_engine_histreamer_avmetadatahelper_config", 59049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/services/dfx:media_service_log_dfx_public_config", 60049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/services/utils:media_service_utils_public_config", 61049e185fSopenharmony_ci ] 62049e185fSopenharmony_ci 63049e185fSopenharmony_ci deps = [ 64049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/services/dfx:media_service_dfx", 65049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/services/dfx:media_service_log_dfx", 66049e185fSopenharmony_ci "$MEDIA_PLAYER_ROOT_DIR/services/utils:media_service_utils", 67049e185fSopenharmony_ci ] 68049e185fSopenharmony_ci 69049e185fSopenharmony_ci external_deps = [ 70049e185fSopenharmony_ci "av_codec:av_codec_client", 71049e185fSopenharmony_ci "av_codec:av_codec_media_engine_filters", 72049e185fSopenharmony_ci "av_codec:av_codec_media_engine_modules", 73049e185fSopenharmony_ci "c_utils:utils", 74049e185fSopenharmony_ci "drivers_interface_display:display_commontype_idl_headers", 75049e185fSopenharmony_ci "graphic_surface:surface", 76049e185fSopenharmony_ci "graphic_surface:sync_fence", 77049e185fSopenharmony_ci "hilog:libhilog", 78049e185fSopenharmony_ci "image_framework:image_native", 79049e185fSopenharmony_ci "ipc:ipc_single", 80049e185fSopenharmony_ci "media_foundation:media_foundation", 81049e185fSopenharmony_ci "safwk:system_ability_fwk", 82049e185fSopenharmony_ci ] 83049e185fSopenharmony_ci 84049e185fSopenharmony_ci subsystem_name = "multimedia" 85049e185fSopenharmony_ci part_name = "player_framework" 86049e185fSopenharmony_ci} 87