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/static_vm_config.gni")
17b1994897Sopenharmony_ci
18b1994897Sopenharmony_cigroup("arkplatform_packages") {
19b1994897Sopenharmony_ci  if (enable_arkplatform) {
20b1994897Sopenharmony_ci    deps = [ ":libarkplatform" ]
21b1994897Sopenharmony_ci  }
22b1994897Sopenharmony_ci}
23b1994897Sopenharmony_ci
24b1994897Sopenharmony_ciconfig("arkplatform_public_config") {
25b1994897Sopenharmony_ci  include_dirs = [ "include" ]
26b1994897Sopenharmony_ci}
27b1994897Sopenharmony_ci
28b1994897Sopenharmony_ciohos_source_set("arkplatform_static") {
29b1994897Sopenharmony_ci  sources = [ "src/arkplatform.cpp" ]
30b1994897Sopenharmony_ci  include_dirs = [
31b1994897Sopenharmony_ci    "$ark_root/arkplatform",
32b1994897Sopenharmony_ci    "$ark_root/include",
33b1994897Sopenharmony_ci  ]
34b1994897Sopenharmony_ci
35b1994897Sopenharmony_ci  part_name = "runtime_core"
36b1994897Sopenharmony_ci  subsystem_name = "arkcompiler"
37b1994897Sopenharmony_ci
38b1994897Sopenharmony_ci  external_deps = [
39b1994897Sopenharmony_ci    "ets_runtime:libark_jsruntime",
40b1994897Sopenharmony_ci    "hilog:libhilog",
41b1994897Sopenharmony_ci  ]
42b1994897Sopenharmony_ci}
43b1994897Sopenharmony_ci
44b1994897Sopenharmony_ciohos_shared_library("libarkplatform") {
45b1994897Sopenharmony_ci  deps = [ ":arkplatform_static" ]
46b1994897Sopenharmony_ci  output_extension = "so"
47b1994897Sopenharmony_ci  part_name = "runtime_core"
48b1994897Sopenharmony_ci  subsystem_name = "arkcompiler"
49b1994897Sopenharmony_ci}
50