1ca0551cfSopenharmony_ci# Copyright (c) 2022 Huawei Device Co., Ltd. 2ca0551cfSopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License"); 3ca0551cfSopenharmony_ci# you may not use this file except in compliance with the License. 4ca0551cfSopenharmony_ci# You may obtain a copy of the License at 5ca0551cfSopenharmony_ci# 6ca0551cfSopenharmony_ci# http://www.apache.org/licenses/LICENSE-2.0 7ca0551cfSopenharmony_ci# 8ca0551cfSopenharmony_ci# Unless required by applicable law or agreed to in writing, software 9ca0551cfSopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS, 10ca0551cfSopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11ca0551cfSopenharmony_ci# See the License for the specific language governing permissions and 12ca0551cfSopenharmony_ci# limitations under the License. 13ca0551cfSopenharmony_ci 14ca0551cfSopenharmony_ciimport("//build/ohos.gni") 15ca0551cfSopenharmony_cigroup("unittest") { 16ca0551cfSopenharmony_ci testonly = true 17ca0551cfSopenharmony_ci deps = [] 18ca0551cfSopenharmony_ci 19ca0551cfSopenharmony_ci deps += [ 20ca0551cfSopenharmony_ci "ast_interface_type_test:unittest", 21ca0551cfSopenharmony_ci "ast_method_test:unittest", 22ca0551cfSopenharmony_ci "ast_module_test:unittest", 23ca0551cfSopenharmony_ci "ast_namespace_test:unittest", 24ca0551cfSopenharmony_ci "ast_node_test:unittest", 25ca0551cfSopenharmony_ci "ast_parameter_test:unittest", 26ca0551cfSopenharmony_ci "ast_sequenceable_type_test:unittest", 27ca0551cfSopenharmony_ci "ast_type_test:unittest", 28ca0551cfSopenharmony_ci "cacheable_test:unittest", 29ca0551cfSopenharmony_ci "codegen_code_generator_test:unittest", 30ca0551cfSopenharmony_ci "cpp_code_emitter_test:unittest", 31ca0551cfSopenharmony_ci "lexer_test:unittest", 32ca0551cfSopenharmony_ci "metadata_dumper_test:unittest", 33ca0551cfSopenharmony_ci "metadata_reader_test:unittest", 34ca0551cfSopenharmony_ci "metadata_serializer_test:unittest", 35ca0551cfSopenharmony_ci "util_options_test:unittest", 36ca0551cfSopenharmony_ci "util_string_test:unittest", 37ca0551cfSopenharmony_ci ] 38ca0551cfSopenharmony_ci} 39