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("$ark_root/tests/test_helper.gni")
16b1994897Sopenharmony_ci
17b1994897Sopenharmony_cihost_unittest_action("PlatformsTest") {
18b1994897Sopenharmony_ci  module_out_path = module_output_path
19b1994897Sopenharmony_ci
20b1994897Sopenharmony_ci  sources = [ "file_test.cpp" ]
21b1994897Sopenharmony_ci
22b1994897Sopenharmony_ci  include_dirs = [
23b1994897Sopenharmony_ci    "$ark_root/libpandabase",
24b1994897Sopenharmony_ci    "$ark_root/platforms",
25b1994897Sopenharmony_ci  ]
26b1994897Sopenharmony_ci
27b1994897Sopenharmony_ci  configs = [
28b1994897Sopenharmony_ci    "$ark_root:ark_config",
29b1994897Sopenharmony_ci    "$ark_root/libpandabase:arkbase_public_config",
30b1994897Sopenharmony_ci    sdk_libc_secshared_config,
31b1994897Sopenharmony_ci  ]
32b1994897Sopenharmony_ci
33b1994897Sopenharmony_ci  deps = [
34b1994897Sopenharmony_ci    "$ark_root/libpandabase:libarkbase_static",
35b1994897Sopenharmony_ci    "//third_party/googletest:gmock_main",
36b1994897Sopenharmony_ci  ]
37b1994897Sopenharmony_ci
38b1994897Sopenharmony_ci  external_deps = [ sdk_libc_secshared_dep ]
39b1994897Sopenharmony_ci
40b1994897Sopenharmony_ci  cflags = [ "-DWITH_MOCK" ]
41b1994897Sopenharmony_ci}
42b1994897Sopenharmony_ci
43b1994897Sopenharmony_cigroup("unittest") {
44b1994897Sopenharmony_ci  testonly = true
45b1994897Sopenharmony_ci  deps = [ ":PlatformsTest" ]
46b1994897Sopenharmony_ci}
47b1994897Sopenharmony_ci
48b1994897Sopenharmony_cigroup("host_unittest") {
49b1994897Sopenharmony_ci  testonly = true
50b1994897Sopenharmony_ci  deps = [ ":PlatformsTestAction" ]
51b1994897Sopenharmony_ci}
52