当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
5 Star 3 Fork 5

OpenHarmony/wukong
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
BUILD.gn 5.07 KB
一键复制 编辑 原始数据 按行查看 历史
ry 提交于 2022-09-13 21:35 . modify code path
# 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.
import("//build/ohos.gni")
wukong_root = "//test/ostest/wukong"
ability_runtime_root = "//foundation/ability/ability_runtime"
config("wukong_common_config") {
include_dirs = [ "//third_party/json/single_include/nlohmann" ]
cflags = [ "-D__OHOS__" ]
cflags_cc = [ "-fexceptions" ]
}
accessibility_include_dirs = [
"//base/accessibility/interfaces",
"//foundation/bundlemanager/bundle_framework/common/log/include",
"//foundation/multimodalinput/input/interfaces",
"//base/hiviewdfx/hisysevent/interfaces",
"//commonlibrary/c_utils/base/include",
"//utils/system/safwk/native/include",
"//third_party/json/include",
"include",
]
ohos_executable("wukong") {
configs = [ ":wukong_common_config" ]
sources = [
"${ability_runtime_root}/tools/aa/src/shell_command.cpp",
"${wukong_root}/common/src/app_manager.cpp",
"${wukong_root}/common/src/component_manager.cpp",
"${wukong_root}/common/src/multimode_manager.cpp",
"${wukong_root}/common/src/wukong_logger.cpp",
"${wukong_root}/common/src/wukong_util.cpp",
"${wukong_root}/component_event/src/ability_tree.cpp",
"${wukong_root}/component_event/src/component_tree.cpp",
"${wukong_root}/component_event/src/normal_scene.cpp",
"${wukong_root}/component_event/src/page_tree.cpp",
"${wukong_root}/component_event/src/scene_delegate.cpp",
"${wukong_root}/component_event/src/tree_manager.cpp",
"${wukong_root}/component_event/src/wukong_tree.cpp",
"${wukong_root}/input_factory/src/appswitch_input.cpp",
"${wukong_root}/input_factory/src/component_input.cpp",
"${wukong_root}/input_factory/src/hardkey_input.cpp",
"${wukong_root}/input_factory/src/input_action.cpp",
"${wukong_root}/input_factory/src/input_factory.cpp",
"${wukong_root}/input_factory/src/keyboard_input.cpp",
"${wukong_root}/input_factory/src/mouse_input.cpp",
"${wukong_root}/input_factory/src/record_input.cpp",
"${wukong_root}/input_factory/src/swap_input.cpp",
"${wukong_root}/input_factory/src/touch_input.cpp",
"${wukong_root}/report/src/data_set.cpp",
"${wukong_root}/report/src/exception_manager.cpp",
"${wukong_root}/report/src/filter.cpp",
"${wukong_root}/report/src/filter_category.cpp",
"${wukong_root}/report/src/format.cpp",
"${wukong_root}/report/src/format_csv.cpp",
"${wukong_root}/report/src/format_json.cpp",
"${wukong_root}/report/src/report.cpp",
"${wukong_root}/report/src/statistics.cpp",
"${wukong_root}/report/src/statistics_ability.cpp",
"${wukong_root}/report/src/statistics_componment.cpp",
"${wukong_root}/report/src/statistics_event.cpp",
"${wukong_root}/report/src/statistics_exception.cpp",
"${wukong_root}/report/src/sysevent_listener.cpp",
"${wukong_root}/report/src/table.cpp",
"${wukong_root}/shell_command/src/wukong_main.cpp",
"${wukong_root}/shell_command/src/wukong_shell_command.cpp",
"${wukong_root}/test_flow/src/random_test_flow.cpp",
"${wukong_root}/test_flow/src/special_test_flow.cpp",
"${wukong_root}/test_flow/src/test_flow.cpp",
"${wukong_root}/test_flow/src/test_flow_factory.cpp",
]
include_dirs = [
"${wukong_root}/common/include",
"${wukong_root}/component_event/include",
"${wukong_root}/input_factory/include",
"${wukong_root}/report/include",
"${wukong_root}/shell_command/include",
"${wukong_root}/test_flow/include",
]
include_dirs += accessibility_include_dirs
deps = [
"//base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent_manager:libhisyseventmanager",
"//third_party/libpng:libpng",
]
external_deps = [
"ability_base:want",
"ability_runtime:ability_context_native",
"ability_runtime:ability_manager",
"ability_runtime:abilitykit_native",
"ability_runtime:app_manager",
"ability_runtime:runtime",
"accessibility:accessibility_common",
"accessibility:accessibilityclient",
"accessibility:accessibleability",
"bundle_framework:appexecfwk_base",
"bundle_framework:appexecfwk_core",
"c_utils:utils",
"common_event_service:cesfwk_core",
"common_event_service:cesfwk_innerkits",
"hisysevent_native:libhisysevent",
"hiviewdfx_hilog_native:libhilog",
"input:libmmi-client",
"ipc:ipc_core",
"multimedia_image_standard:image_native",
"samgr:samgr_proxy",
"window_manager:libdm",
"window_manager:libwm",
]
install_enable = true
subsystem_name = "test"
part_name = "wukong"
output_name = "wukong"
defines = [
"LOG_TAG=\"WuKong\"",
"LOG_DOMAIN = 0xD003200",
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openharmony/wukong.git
git@gitee.com:openharmony/wukong.git
openharmony
wukong
wukong
master

搜索帮助