From 80b33325939737ef7d4e7ce57c5697965522e424 Mon Sep 17 00:00:00 2001 From: anguanglin Date: Mon, 11 Jul 2022 01:01:37 +0800 Subject: [PATCH] min refactor: mv lite to build/hb Signed-off-by: anguanglin Change-Id: Idf520e09db413b4d1ae02af0fc10a2b43277c0d6 --- frameworks/BUILD.gn | 2 +- frameworks/src/BUILD.gn | 2 +- interfaces/kits/native/BUILD.gn | 4 ++-- interfaces/kits/native/test/performance/BUILD.gn | 4 ++-- interfaces/kits/native/test/unittest/BUILD.gn | 4 ++-- services/BUILD.gn | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/frameworks/BUILD.gn b/frameworks/BUILD.gn index fec39dc..8f8c44d 100755 --- a/frameworks/BUILD.gn +++ b/frameworks/BUILD.gn @@ -11,7 +11,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("//build/lite/config/component/lite_component.gni") +import("//build/hb/config/component/lite_component.gni") lite_component("sensor_lite") { features = [ "src:sensor_client" ] diff --git a/frameworks/src/BUILD.gn b/frameworks/src/BUILD.gn index 6079564..e8985cf 100644 --- a/frameworks/src/BUILD.gn +++ b/frameworks/src/BUILD.gn @@ -11,7 +11,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("//build/lite/config/component/lite_component.gni") +import("//build/hb/config/component/lite_component.gni") shared_library("sensor_client") { if (ohos_kernel_type == "liteos_riscv") { diff --git a/interfaces/kits/native/BUILD.gn b/interfaces/kits/native/BUILD.gn index 378f6e3..42d946e 100755 --- a/interfaces/kits/native/BUILD.gn +++ b/interfaces/kits/native/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/ndk/ndk.gni") +import("//build/hb/config/component/lite_component.gni") +import("//build/hb/ndk/ndk.gni") group("unittest") { deps = [ diff --git a/interfaces/kits/native/test/performance/BUILD.gn b/interfaces/kits/native/test/performance/BUILD.gn index 8352526..2999171 100755 --- a/interfaces/kits/native/test/performance/BUILD.gn +++ b/interfaces/kits/native/test/performance/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") unittest("sensor_lite_test_performance") { output_extension = "bin" diff --git a/interfaces/kits/native/test/unittest/BUILD.gn b/interfaces/kits/native/test/unittest/BUILD.gn index 57a96ed..5663246 100755 --- a/interfaces/kits/native/test/unittest/BUILD.gn +++ b/interfaces/kits/native/test/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") unittest("sensor_lite_test_interface") { output_extension = "bin" diff --git a/services/BUILD.gn b/services/BUILD.gn index d890c31..44de5f0 100644 --- a/services/BUILD.gn +++ b/services/BUILD.gn @@ -11,7 +11,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("//build/lite/config/component/lite_component.gni") +import("//build/hb/config/component/lite_component.gni") executable("sensor_service") { sources = [ -- Gitee