1b1994897Sopenharmony_ci# Copyright (c) 2022 Huawei Device Co., Ltd.
2b1994897Sopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License");
3b1994897Sopenharmony_ci# you may not use this file except in compliance with the License.
4b1994897Sopenharmony_ci# You may obtain a copy of the License at
5b1994897Sopenharmony_ci#
6b1994897Sopenharmony_ci#     http://www.apache.org/licenses/LICENSE-2.0
7b1994897Sopenharmony_ci#
8b1994897Sopenharmony_ci# Unless required by applicable law or agreed to in writing, software
9b1994897Sopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS,
10b1994897Sopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11b1994897Sopenharmony_ci# See the License for the specific language governing permissions and
12b1994897Sopenharmony_ci# limitations under the License.
13b1994897Sopenharmony_ci
14b1994897Sopenharmony_ciimport("//arkcompiler/runtime_core/ark_config.gni")
15b1994897Sopenharmony_ciimport("$ark_root/tests/test_helper.gni")
16b1994897Sopenharmony_ci
17b1994897Sopenharmony_cihost_unittest_action("PluginsTest") {
18b1994897Sopenharmony_ci  module_out_path = module_output_path
19b1994897Sopenharmony_ci
20b1994897Sopenharmony_ci  sources = [ "ecmascript_meta_test.cpp" ]
21b1994897Sopenharmony_ci
22b1994897Sopenharmony_ci  configs = [
23b1994897Sopenharmony_ci    "$ark_root:ark_config",
24b1994897Sopenharmony_ci    "$ark_root/assembler:arkassembler_public_config",
25b1994897Sopenharmony_ci    "$ark_root/libpandabase:arkbase_public_config",
26b1994897Sopenharmony_ci    sdk_libc_secshared_config,
27b1994897Sopenharmony_ci  ]
28b1994897Sopenharmony_ci
29b1994897Sopenharmony_ci  deps = [
30b1994897Sopenharmony_ci    "$ark_root/assembler:libarkassembler_static",
31b1994897Sopenharmony_ci    "$ark_root/libpandabase:libarkbase_static",
32b1994897Sopenharmony_ci  ]
33b1994897Sopenharmony_ci
34b1994897Sopenharmony_ci  external_deps = [ sdk_libc_secshared_dep ]
35b1994897Sopenharmony_ci}
36b1994897Sopenharmony_ci
37b1994897Sopenharmony_cigroup("unittest") {
38b1994897Sopenharmony_ci  testonly = true
39b1994897Sopenharmony_ci  deps = [ ":PluginsTest" ]
40b1994897Sopenharmony_ci}
41b1994897Sopenharmony_ci
42b1994897Sopenharmony_cigroup("host_unittest") {
43b1994897Sopenharmony_ci  testonly = true
44b1994897Sopenharmony_ci  deps = [ ":PluginsTestAction" ]
45b1994897Sopenharmony_ci}
46