From a5198c1aa352b1135a9c0bfa0e06e55ff1166955 Mon Sep 17 00:00:00 2001 From: linzhuobin1 Date: Wed, 12 Feb 2025 15:05:27 +0800 Subject: [PATCH] IssueNo:#IBKVS4 Description:Sqlite fix non-compliant component deps Sig: SIG_DataManagement Feature or Bugfix: Binary Source:No/Yes TDD:Pass/Fail/NA XTS:Pass/Fail/NA Pretest:Pass/Fail/NA Signed-off-by: linzhuobin1 --- BUILD.gn | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 289d1cf..8d64371 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -288,8 +288,10 @@ if (is_cross_platform_build) { "-Wno-implicit-fallthrough", ] - deps = [ "//third_party/bounds_checking_function:libsec_static" ] - external_deps = [ "openssl:libcrypto_static" ] + deps = [ + "//third_party/bounds_checking_function:libsec_static", + "//third_party/openssl:libcrypto_static", + ] public_configs = [ ":sqlite_config" ] configs = [ ":sqlite3_private_config" ] part_name = "sqlite" -- Gitee