BUILD.gn 1.8 KB
Newer Older
M
mamingshuai 已提交
1 2 3 4 5 6 7 8 9 10 11 12
# Copyright (c) 2020 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.
L
leon 已提交
13 14 15
if (defined(ohos_lite)) {
  import("//build/lite/config/component/lite_component.gni")
  import("//build/lite/config/test.gni")
M
mamingshuai 已提交
16

L
leon 已提交
17 18 19 20 21 22 23 24 25 26 27 28
  unittest("init_test") {
    output_extension = "bin"
    output_dir = "$root_out_dir/test/unittest/startup"
    ldflags = [
      "-lstdc++",
      "-lpthread",
      "-lm",
    ]
    defines = ["OHOS_LITE"]
    if (storage_type == "emmc") {
      defines += [ "USE_EMMC_STORAGE" ]
    }
M
mamingshuai 已提交
29

L
leon 已提交
30
    include_dirs = [ "//base/startup/init_lite/services/include" ]
M
mamingshuai 已提交
31

L
leon 已提交
32 33 34 35 36 37 38 39 40
    sources = [
      "//base/startup/init_lite/services/src/init_adapter.c",
      "//base/startup/init_lite/services/src/init_cmds.c",
      "//base/startup/init_lite/services/src/init_jobs.c",
      "//base/startup/init_lite/services/src/init_service.c",
      "//base/startup/init_lite/services/src/init_service_manager.c",
      "//base/startup/init_lite/services/src/init_signal_handler.c",
      "cmd_func_test.cpp",
    ]
M
mamingshuai 已提交
41

L
leon 已提交
42 43 44 45 46 47
    deps = [
      "//base/startup/syspara_lite/frameworks/parameter:parameter",
      "//build/lite/config/component/cJSON:cjson_shared",
      "//third_party/bounds_checking_function:libsec_shared",
    ]
  }
M
mamingshuai 已提交
48

L
leon 已提交
49 50 51 52 53 54 55 56 57
  group("unittest") {
    deps = [ ":init_test" ]
  }
} else {
  import("//build/ohos.gni")
  sources = []
  group("unittest") {
    deps = []
  }
M
mamingshuai 已提交
58
}