1# Copyright (c) 2023 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/ohos.gni") 15import("//build/test.gni") 16import("//foundation/ability/idl_tool/idl_tool.gni") 17 18module_output_path = "idl/unittest" 19 20IDL_DIR = "../../.." 21 22common_sources = [ 23 "${IDL_DIR}/util/file.cpp", 24 "${IDL_DIR}/util/light_refcount_base.cpp", 25 "${IDL_DIR}/util/logger.cpp", 26 "${IDL_DIR}/util/options.cpp", 27 "${IDL_DIR}/util/string.cpp", 28 "${IDL_DIR}/util/string_builder.cpp", 29 "${IDL_DIR}/util/string_pool.cpp", 30] 31 32ohos_unittest("util_string_test") { 33 module_out_path = module_output_path 34 include_dirs = [ "${IDL_TOOL_DIR}" ] 35 36 sources = [ "util_string_test.cpp" ] 37 38 sources += common_sources 39 40 deps = [] 41 42 external_deps = [ "c_utils:utils" ] 43 44 part_name = "idl_tool" 45 subsystem_name = "ability" 46} 47 48group("unittest") { 49 testonly = true 50 deps = [ ":util_string_test" ] 51} 52