From 4fe359452bc118d1ecfec50d73e5f4b95fe24b67 Mon Sep 17 00:00:00 2001 From: anguanglin Date: Mon, 11 Jul 2022 01:34:21 +0800 Subject: [PATCH] min refactor: mv lite to build/hb Signed-off-by: anguanglin Change-Id: I1fa8a924b7738797bc9a8b8eb090d9294efa4f63 --- hardware/display/BUILD.gn | 2 +- riscv32_virt/liteos_m/board/hardware/BUILD.gn | 2 +- riscv32_virt/liteos_m/board/hardware/display/BUILD.gn | 2 +- riscv32_virt/liteos_m/board/hardware/input/BUILD.gn | 2 +- riscv32_virt/liteos_m/gen_fs/BUILD.gn | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hardware/display/BUILD.gn b/hardware/display/BUILD.gn index c905062..7fa0607 100644 --- a/hardware/display/BUILD.gn +++ b/hardware/display/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("display_layer") { output_name = "display_layer" diff --git a/riscv32_virt/liteos_m/board/hardware/BUILD.gn b/riscv32_virt/liteos_m/board/hardware/BUILD.gn index f9b4284..11d7587 100644 --- a/riscv32_virt/liteos_m/board/hardware/BUILD.gn +++ b/riscv32_virt/liteos_m/board/hardware/BUILD.gn @@ -27,7 +27,7 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -import("//build/lite/config/component/lite_component.gni") +import("//build/hb/config/component/lite_component.gni") import("//drivers/hdf_core/adapter/khdf/liteos_m/hdf.gni") hdf_driver("hdf_input_driver") { diff --git a/riscv32_virt/liteos_m/board/hardware/display/BUILD.gn b/riscv32_virt/liteos_m/board/hardware/display/BUILD.gn index 98dc8c1..3138c8f 100644 --- a/riscv32_virt/liteos_m/board/hardware/display/BUILD.gn +++ b/riscv32_virt/liteos_m/board/hardware/display/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("//drivers/hdf_core/adapter/khdf/liteos_m/hdf.gni") hdf_driver("display_layer") { diff --git a/riscv32_virt/liteos_m/board/hardware/input/BUILD.gn b/riscv32_virt/liteos_m/board/hardware/input/BUILD.gn index 0960349..bc648df 100644 --- a/riscv32_virt/liteos_m/board/hardware/input/BUILD.gn +++ b/riscv32_virt/liteos_m/board/hardware/input/BUILD.gn @@ -27,7 +27,7 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -import("//build/lite/config/component/lite_component.gni") +import("//build/hb/config/component/lite_component.gni") import("//drivers/hdf_core/adapter/khdf/liteos_m/hdf.gni") hdf_driver("hdi_input") { diff --git a/riscv32_virt/liteos_m/gen_fs/BUILD.gn b/riscv32_virt/liteos_m/gen_fs/BUILD.gn index 457f083..2faa70d 100644 --- a/riscv32_virt/liteos_m/gen_fs/BUILD.gn +++ b/riscv32_virt/liteos_m/gen_fs/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") module_name = get_path_info(rebase_path("."), "name") build_ext_component(module_name) { -- Gitee