From 8fd691dc37f41963a0e29c065d6b16a717d33ef2 Mon Sep 17 00:00:00 2001 From: anguanglin Date: Tue, 12 Jul 2022 16:56:55 +0800 Subject: [PATCH] min refactor: mv lite to build/hb Signed-off-by: anguanglin Change-Id: I5699fa528598b882fcfa50eec5ac87b51b53d5fc --- interfaces/innerkits/appverify_lite/BUILD.gn | 8 ++++---- interfaces/innerkits/appverify_lite/unittest/BUILD.gn | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/interfaces/innerkits/appverify_lite/BUILD.gn b/interfaces/innerkits/appverify_lite/BUILD.gn index c9e2f8b..b51f83e 100644 --- a/interfaces/innerkits/appverify_lite/BUILD.gn +++ b/interfaces/innerkits/appverify_lite/BUILD.gn @@ -11,8 +11,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("//build/lite/config/component/lite_component.gni") -import("//build/lite/config/hap_pack.gni") +import("//build/hb/config/component/lite_component.gni") +import("//build/hb/config/hap_pack.gni") if (os_level == "small" || os_level == "mini") { config("app_verify_config") { @@ -46,7 +46,7 @@ if (os_level == "small" || os_level == "mini") { configs += [ ":app_verify_config" ] public_deps = [ "//base/security/appverify/interfaces/innerkits/appverify_lite/products/ipcamera:verify_base", - "//build/lite/config/component/cJSON:cjson_static", + "//build/hb/config/component/cJSON:cjson_static", "//third_party/bounds_checking_function:libsec_static", "//third_party/mbedtls:mbedtls_static", ] @@ -72,7 +72,7 @@ if (os_level == "small" || os_level == "mini") { configs += [ ":app_verify_config" ] public_deps = [ "//base/security/appverify/interfaces/innerkits/appverify_lite/products/ipcamera:verify_base", - "//build/lite/config/component/cJSON:cjson_shared", + "//build/hb/config/component/cJSON:cjson_shared", "//third_party/bounds_checking_function:libsec_shared", "//third_party/mbedtls:mbedtls_shared", ] diff --git a/interfaces/innerkits/appverify_lite/unittest/BUILD.gn b/interfaces/innerkits/appverify_lite/unittest/BUILD.gn index 2d1cd49..54bd0a1 100644 --- a/interfaces/innerkits/appverify_lite/unittest/BUILD.gn +++ b/interfaces/innerkits/appverify_lite/unittest/BUILD.gn @@ -11,8 +11,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("//build/lite/config/component/lite_component.gni") -import("//build/lite/config/test.gni") +import("//build/hb/config/component/lite_component.gni") +import("//build/hb/config/test.gni") config("app_verify_test_config") { cflags_cc = [ "-std=c++17" ] @@ -47,7 +47,7 @@ unittest("app_verify_test") { "//base/security/appverify/interfaces/innerkits/appverify_lite:verify", "//base/security/permission/services/permission_lite/pms_client:pms_client", "//base/startup/syspara_lite/frameworks/parameter:parameter", - "//build/lite/config/component/cJSON:cjson_shared", + "//build/hb/config/component/cJSON:cjson_shared", "//third_party/bounds_checking_function:libsec_shared", "//third_party/mbedtls:mbedtls_shared", ] -- Gitee