1# Copyright (c) 2022 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("//arkcompiler/ets_runtime/test/test_helper.gni") 15 16host_moduletest_action("container_arraylist") { 17 deps = [] 18} 19 20host_moduletest_action("container_deque") { 21 deps = [] 22} 23 24host_moduletest_action("container_queue") { 25 deps = [] 26} 27 28host_moduletest_action("container_hashmap") { 29 deps = [] 30} 31 32host_moduletest_action("container_hashset") { 33 deps = [] 34} 35 36host_moduletest_action("container_plainarray") { 37 deps = [] 38} 39 40host_moduletest_action("container_stack") { 41 deps = [] 42} 43 44host_moduletest_action("container_treemap") { 45 deps = [] 46} 47 48host_moduletest_action("container_treeset") { 49 deps = [] 50} 51 52host_moduletest_action("container_vector") { 53 deps = [] 54} 55 56host_moduletest_action("container_list") { 57 deps = [] 58} 59 60host_moduletest_action("container_linked_list") { 61 deps = [] 62} 63 64host_moduletest_action("container_lightweightmap") { 65 deps = [] 66} 67 68host_moduletest_action("container_lightweightset") { 69 deps = [] 70} 71 72host_moduletest_action("container") { 73 extra_modules = [ 74 "container_arraylist", 75 "container_deque", 76 "container_hashmap", 77 "container_hashset", 78 "container_lightweightmap", 79 "container_lightweightset", 80 "container_linked_list", 81 "container_list", 82 "container_plainarray", 83 "container_queue", 84 "container_stack", 85 "container_treemap", 86 "container_treeset", 87 "container_vector", 88 ] 89 deps = [ 90 ":gen_container_arraylist_abc", 91 ":gen_container_deque_abc", 92 ":gen_container_hashmap_abc", 93 ":gen_container_hashset_abc", 94 ":gen_container_lightweightmap_abc", 95 ":gen_container_lightweightset_abc", 96 ":gen_container_linked_list_abc", 97 ":gen_container_list_abc", 98 ":gen_container_plainarray_abc", 99 ":gen_container_queue_abc", 100 ":gen_container_stack_abc", 101 ":gen_container_treemap_abc", 102 ":gen_container_treeset_abc", 103 ":gen_container_vector_abc", 104 ] 105 timeout = "300" 106} 107