BUILD.gn 1.3 KB
Newer Older
X
xionglei6 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
# Copyright (c) 2022 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

M
init  
Mupceet 已提交
14
import("//base/startup/init/begetd.gni")
X
xionglei6 已提交
15 16 17 18
import("//build/ohos.gni")

config("exported_header_files") {
  visibility = [ ":*" ]
19 20 21 22
  include_dirs = [
    "//base/startup/init/interfaces/innerkits/sandbox/include",
    "//base/customization/config_policy/interfaces/inner_api/include",
  ]
X
xionglei6 已提交
23 24
}

M
Mupceet 已提交
25
ohos_static_library("sandbox") {
X
xionglei6 已提交
26 27 28 29 30 31 32
  sources = [
    "sandbox.c",
    "sandbox_namespace.c",
  ]
  public_configs = [ ":exported_header_files" ]
  include_dirs = [
    "//third_party/bounds_checking_function/include",
M
init  
Mupceet 已提交
33 34
    "//base/startup/init/services/include",
    "//base/startup/init/interfaces/innerkits/include",
X
xionglei6 已提交
35 36
    "//third_party/cJSON",
  ]
M
Mupceet 已提交
37 38 39
  if (target_cpu == "arm64") {
    defines = [ "SUPPORT_64BIT" ]
  }
X
xionglei6 已提交
40 41
  part_name = "init"
}