From 83b7266fa10bc11b238c12665ff08face99e6ad3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E5=87=AF=E6=98=8E?= Date: Fri, 21 Jun 2024 01:17:56 +0000 Subject: [PATCH] =?UTF-8?q?=E8=A7=84=E8=8C=83=E5=BC=B9=E6=80=A7=E9=83=A8?= =?UTF-8?q?=E7=BD=B2=E5=BC=80=E5=85=B3=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 谢凯明 --- BUILD.gn | 2 +- config_policy.gni | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index d1fc028..2303914 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -14,7 +14,7 @@ import("./config_policy.gni") group("config_policy_components") { - if (os_level == "standard" && support_config_policy_napi && support_jsapi) { + if (os_level == "standard" && config_policy_api_support && support_jsapi) { deps = [ "./frameworks/config_policy:configpolicy_util", "./interfaces/kits/cj:cj_config_policy_ffi", diff --git a/config_policy.gni b/config_policy.gni index c4a6a69..c86e5cb 100644 --- a/config_policy.gni +++ b/config_policy.gni @@ -15,6 +15,6 @@ declare_args() { # if fs has prefix before OH path, set it here config_policy_fs_prefix = "" - # Whether support napi so - support_config_policy_napi = true + # Whether support api so + config_policy_api_support = true } -- Gitee