1 Star 0 Fork 2.7K

Caoruihong / ace_ace_engine

forked from OpenHarmony / arkui_ace_engine 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
BUILD.gn 2.66 KB
一键复制 编辑 原始数据 按行查看 历史
Yao.inhome 提交于 2022-02-09 14:36 . UIservice 目录结构整改
# Copyright (c) 2021 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")
import("//foundation/ace/ace_engine/ace_config.gni")
# Common config for Ability Cross-platform Environment(ACE) source
config("ace_config") {
visibility = [ ":*" ]
include_dirs = [
"$ace_root",
"$ace_root/frameworks",
"$root_out_dir/ace/framework",
"//third_party/zlib",
]
# TODO: should not add here
if (is_standard_system && !use_mingw_win && !use_mac) {
include_dirs += [
"//base/global/resmgr_standard/frameworks/resmgr/include",
"//base/global/resmgr_standard/interfaces/innerkits/include",
"$ace_root/adapter/ohos/services/uiservice/include",
]
}
defines = ace_common_defines
if (is_wearable_product) {
defines += ace_wearable_defines
}
if (is_ivi_product) {
defines += ace_ivi_defines
}
if (defined(product_name) &&
(product_name == "rk3566" || product_name == "rk3568")) {
defines += [ "PRODUCT_RK" ]
}
cflags = [
"-fvisibility=hidden",
"-fdata-sections",
"-ffunction-sections",
"-Os",
]
cflags_cc = [
"-fvisibility-inlines-hidden",
"-Os",
]
if (use_mingw_win) {
cflags += [ "-std=c++17" ]
defines += [ "_USE_MATH_DEFINES" ]
}
}
config("ace_test_config") {
visibility = [ ":*" ]
include_dirs = [
"$ace_root",
"$ace_root/frameworks",
"$root_out_dir/ace/framework",
]
cflags_cc = []
defines = ace_common_defines
# TODO: should not add here
if (is_standard_system && !use_mingw_win && !use_mac) {
include_dirs += [
"//base/global/resmgr_standard/frameworks/resmgr/include",
"//base/global/resmgr_standard/interfaces/innerkits/include",
]
cflags_cc += [
"-Wno-thread-safety-attributes",
"-Wno-thread-safety-analysis",
]
defines += [ "OHOS_STANDARD_SYSTEM" ]
}
if (!is_standard_system) {
defines += [ "ENABLE_NATIVE_VIEW" ]
}
defines += [ "OHOS_PLATFORM" ]
if (is_wearable_product) {
defines += ace_wearable_defines
}
cflags = [
"-fvisibility=hidden",
"-fdata-sections",
"-ffunction-sections",
]
cflags_cc += [ "-fvisibility-inlines-hidden" ]
}
1
https://gitee.com/caoruihong/ace_ace_engine.git
git@gitee.com:caoruihong/ace_ace_engine.git
caoruihong
ace_ace_engine
ace_ace_engine
master

搜索帮助