From 87bc3509f3d338882ba7b4a891fc3df4f41c4679 Mon Sep 17 00:00:00 2001 From: h00868521 Date: Fri, 20 Jun 2025 02:15:38 +0000 Subject: [PATCH] compile check Signed-off-by: h00868521 Change-Id: I0cd4e7e85d439f4a08763aac3d5681205903fa93 --- BUILD.gn | 4 ++-- bundle.json | 2 +- dependency_inputs.gni | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 34c2481e8b5..47754e82233 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -44,7 +44,7 @@ action("mesa3d_action_build") { } else { coverage_option = "no_coverage" } - if (use_new_skia) { + if (mesa3d_feature_upgrade_skia) { skia_version = "new_skia" } else { skia_version = "skia" @@ -62,7 +62,7 @@ action("mesa3d_action_build") { "graphic_surface:surface", "zlib:libz", ] - if (use_new_skia) { + if (mesa3d_feature_upgrade_skia) { external_deps += [ "skia:expatm133", ] } else { external_deps += [ "skia:expat", ] diff --git a/bundle.json b/bundle.json index 95c5bec4459..f9b6b75f699 100644 --- a/bundle.json +++ b/bundle.json @@ -16,7 +16,7 @@ "name": "mesa3d", "subsystem": "thirdparty", "syscap": [], - "features": [], + "features": [ "mesa3d_feature_upgrade_skia" ], "adapted_system_type": [ "standard" ], diff --git a/dependency_inputs.gni b/dependency_inputs.gni index 4ae09dc436f..d8c627d7240 100644 --- a/dependency_inputs.gni +++ b/dependency_inputs.gni @@ -19,6 +19,8 @@ # SOFTWARE. declare_args() { + mesa3d_feature_upgrade_skia = false + deps_inputs = [ "./include/drm-uapi/xe_drm.h", "./include/drm-uapi/etnaviv_drm.h", -- Gitee