ability_ability_runtime/tools/aa/BUILD.gn
jiangzhijun8 5c0a277e97 Merge branch 'master' of gitee.com:openharmony/ability_ability_runtime into DuliBianYi_20241016
Signed-off-by: jiangzhijun8 <jiangzhijun7@huawei.com>
2024-11-06 17:07:17 +08:00

132 lines
3.5 KiB
Plaintext

# Copyright (c) 2021-2024 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/test.gni")
import("//foundation/ability/ability_runtime/ability_runtime.gni")
config("ability_command_config") {
include_dirs = [
"include",
"${ability_runtime_innerkits_path}/app_manager/include/appmgr",
"${ability_runtime_services_path}/abilitymgr/include/utils",
"${ability_runtime_services_path}/abilitymgr/include",
]
}
config("ability_command_exception_config") {
cflags_cc = [ "-fexceptions" ]
}
ohos_static_library("tools_aa_source_set") {
sources = [
"src/ability_command.cpp",
"src/ability_tool_command.cpp",
"src/shell_command.cpp",
"src/shell_command_config_loader.cpp",
"src/shell_command_executor.cpp",
"src/shell_command_result.cpp",
"src/system_time.cpp",
"src/test_observer.cpp",
"src/test_observer_proxy.cpp",
"src/test_observer_stub.cpp",
]
public_configs = [
":ability_command_config",
":ability_command_exception_config",
"${ability_runtime_services_path}/abilitymgr:abilityms_config",
"${ability_runtime_services_path}/common:common_config",
]
cflags = []
if (target_cpu == "arm") {
cflags += [ "-DBINDER_IPC_32BIT" ]
}
deps = [
"${ability_runtime_innerkits_path}/ability_manager:ability_manager",
"${ability_runtime_innerkits_path}/ability_manager:ability_start_options",
"${ability_runtime_innerkits_path}/ability_manager:ability_start_setting",
"${ability_runtime_innerkits_path}/ability_manager:mission_info",
"${ability_runtime_innerkits_path}/app_manager:app_manager",
]
external_deps = [
"ability_base:base",
"ability_base:want",
"bundle_framework:appexecfwk_core",
"c_utils:utils",
"eventhandler:libeventhandler",
"hilog:libhilog",
"init:libbegetutil",
"ipc:ipc_core",
]
public_external_deps = [
"ability_base:session_info",
"bundle_framework:appexecfwk_base",
"graphic_2d:color_manager",
"image_framework:image_native",
"init:libbegetutil",
"jsoncpp:jsoncpp",
"relational_store:native_dataability",
"relational_store:native_rdb",
"samgr:samgr_proxy",
]
subsystem_name = "ability"
part_name = "ability_runtime"
}
ohos_executable("aa") {
sources = [ "src/main.cpp" ]
cflags = []
if (target_cpu == "arm") {
cflags += [ "-DBINDER_IPC_32BIT" ]
}
deps = [ ":tools_aa_source_set" ]
external_deps = [
"ability_base:base",
"ability_base:configuration",
"ability_base:session_info",
"c_utils:utils",
"hicollie:libhicollie",
"hilog:libhilog",
"ipc:ipc_core",
]
symlink_target_name = [ "ability_tool" ]
defines = []
install_enable = true
subsystem_name = "ability"
part_name = "ability_runtime"
}
ohos_prebuilt_etc("shell_command_executor_config.json") {
source = "resource/shell_command_executor_config.json"
subsystem_name = "ability"
part_name = "ability_runtime"
}
group("tools_aa") {
deps = [
":aa",
":shell_command_executor_config.json",
]
}