1# Copyright (c) 2020 Huawei Device Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13import("//build/lite/config/component/lite_component.gni") 14import("//build/lite/config/test.gni") 15 16unittest("appspawn_test") { 17 output_extension = "bin" 18 output_dir = "$root_out_dir/test/unittest/startup" 19 ldflags = [ 20 "-lstdc++", 21 "-lpthread", 22 "-lm", 23 ] 24 25 include_dirs = [ 26 "//base/startup/appspawn_lite/services/include", 27 "//base/hiviewdfx/hilog_lite/interfaces/native/innerkits/hilog", 28 "//third_party/bounds_checking_function/include/", 29 "//third_party/cJSON", 30 ] 31 32 sources = [ 33 "//base/startup/appspawn_lite/services/src/appspawn_message.c", 34 "message_func_test.cpp", 35 ] 36 37 deps = [ 38 "//base/hiviewdfx/hilog_lite/frameworks/featured:hilog_shared", 39 "//build/lite/config/component/cJSON:cjson_shared", 40 "//third_party/bounds_checking_function:libsec_shared", 41 ] 42} 43 44group("unittest") { 45 deps = [ ":appspawn_test" ] 46} 47