From db5e2ed97fc3de487d153989fa0e7d19d36a1fb0 Mon Sep 17 00:00:00 2001 From: anguanglin Date: Tue, 12 Jul 2022 00:13:29 +0800 Subject: [PATCH] min refactor: mv lite to build/hb Signed-off-by: anguanglin Change-Id: I19047c4220b99d33827344985f51d2deddf761be --- BUILD.gn | 2 +- jerry-core/BUILD.gn | 2 +- jerry-ext/BUILD.gn | 2 +- jerry-libm/BUILD.gn | 2 +- jerry-port/default/BUILD.gn | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index ed2293f1..35623489 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -12,7 +12,7 @@ # limitations under the License. if (defined(ohos_lite)) { # is on lite Os for ipcamera - import("//build/lite/config/component/lite_component.gni") + import("//build/hb/config/component/lite_component.gni") lite_component("jerry_engine") { features = [ diff --git a/jerry-core/BUILD.gn b/jerry-core/BUILD.gn index 879cb6f4..a28dbb93 100644 --- a/jerry-core/BUILD.gn +++ b/jerry-core/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") import("//third_party/jerryscript/engine.gni") lite_component("jerry-core") { diff --git a/jerry-ext/BUILD.gn b/jerry-ext/BUILD.gn index 86e634ed..b4885c39 100644 --- a/jerry-ext/BUILD.gn +++ b/jerry-ext/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") import("//third_party/jerryscript/engine.gni") lite_component("jerry-ext") { diff --git a/jerry-libm/BUILD.gn b/jerry-libm/BUILD.gn index 20d08007..3e01cafe 100644 --- a/jerry-libm/BUILD.gn +++ b/jerry-libm/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") import("//third_party/jerryscript/engine.gni") lite_component("jerry-libm") { diff --git a/jerry-port/default/BUILD.gn b/jerry-port/default/BUILD.gn index 317d0103..22c7ed1f 100644 --- a/jerry-port/default/BUILD.gn +++ b/jerry-port/default/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") import("//third_party/jerryscript/engine.gni") lite_component("jerry-port-default") { -- Gitee