1b1994897Sopenharmony_ci# Copyright (c) 2023 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("//arkcompiler/runtime_core/arkplatform/arkplatform_config.gni")
16b1994897Sopenharmony_ciimport("//arkcompiler/runtime_core/arkplatform/tests/test_helper.gni")
17b1994897Sopenharmony_ciimport("//arkcompiler/runtime_core/static_vm_config.gni")
18b1994897Sopenharmony_ci
19b1994897Sopenharmony_cihost_unittest_action("ArkplatformTest") {
20b1994897Sopenharmony_ci  module_out_path = module_output_path
21b1994897Sopenharmony_ci
22b1994897Sopenharmony_ci  sources = [ "jsnapi_test.cpp" ]
23b1994897Sopenharmony_ci
24b1994897Sopenharmony_ci  include_dirs = [ "$ark_root/arkplatform/include" ]
25b1994897Sopenharmony_ci
26b1994897Sopenharmony_ci  configs = [ "$ark_root/arkplatform:arkplatform_public_config" ]
27b1994897Sopenharmony_ci
28b1994897Sopenharmony_ci  deps = [
29b1994897Sopenharmony_ci    "$ark_root/arkplatform:libarkplatform",
30b1994897Sopenharmony_ci    "$ark_third_party_root/icu/icu4c:shared_icui18n",
31b1994897Sopenharmony_ci  ]
32b1994897Sopenharmony_ci
33b1994897Sopenharmony_ci  external_deps = [
34b1994897Sopenharmony_ci    "ets_runtime:libark_jsruntime",
35b1994897Sopenharmony_ci    sdk_libc_secshared_dep,
36b1994897Sopenharmony_ci  ]
37b1994897Sopenharmony_ci}
38b1994897Sopenharmony_ci
39b1994897Sopenharmony_cigroup("unittest") {
40b1994897Sopenharmony_ci  testonly = true
41b1994897Sopenharmony_ci  if (enable_arkplatform) {
42b1994897Sopenharmony_ci    deps = [ ":ArkplatformTest" ]
43b1994897Sopenharmony_ci  }
44b1994897Sopenharmony_ci}
45b1994897Sopenharmony_ci
46b1994897Sopenharmony_cigroup("host_unittest") {
47b1994897Sopenharmony_ci  testonly = true
48b1994897Sopenharmony_ci  if (enable_arkplatform) {
49b1994897Sopenharmony_ci    deps = [ ":ArkplatformTestAction" ]
50b1994897Sopenharmony_ci  }
51b1994897Sopenharmony_ci}
52