From e75bca0f20e82f8bbb0b255d31606fa643c1b335 Mon Sep 17 00:00:00 2001 From: anguanglin Date: Tue, 12 Jul 2022 14:50:46 +0800 Subject: [PATCH] min refactor: mv lite to build/hb Signed-off-by: anguanglin Change-Id: I00aa03b75616dff3413fd530dc01859869e7336f --- BUILD.gn | 4 ++-- communication/broadcast/BUILD.gn | 2 +- samgr/BUILD.gn | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 3e84f90..d70b948 100755 --- a/BUILD.gn +++ b/BUILD.gn @@ -10,8 +10,8 @@ # 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/lite/config/component/lite_component.gni") -import("//build/lite/ndk/ndk.gni") +import("//build/hb/config/component/lite_component.gni") +import("//build/hb/ndk/ndk.gni") import("config.gni") lite_component("samgr") { diff --git a/communication/broadcast/BUILD.gn b/communication/broadcast/BUILD.gn index 2da670e..18629a3 100755 --- a/communication/broadcast/BUILD.gn +++ b/communication/broadcast/BUILD.gn @@ -41,7 +41,7 @@ if (ohos_kernel_type == "liteos_a" || ohos_kernel_type == "linux") { "source/pub_sub_implement.c", ] public_configs = [ ":broadcast_public" ] - configs -= [ "//build/lite/config:language_c" ] + configs -= [ "//build/hb/config:language_c" ] cflags_c = [ "-std=c11", "-Wall", diff --git a/samgr/BUILD.gn b/samgr/BUILD.gn index 3b92be0..dba2012 100644 --- a/samgr/BUILD.gn +++ b/samgr/BUILD.gn @@ -82,7 +82,7 @@ if (ohos_kernel_type == "liteos_a" || ohos_kernel_type == "linux") { ] public_deps = [ - "//build/lite/config/component/cJSON:cjson_shared", + "//build/hb/config/component/cJSON:cjson_shared", "//foundation/communication/ipc/interfaces/innerkits/c/ipc:ipc_single", "//foundation/distributedschedule/samgr_lite/samgr/source:samgr_source", "//foundation/distributedschedule/samgr_lite/samgr_client:client", -- Gitee