From ee04156db87e681469123d89d5fa2c070fe488cb Mon Sep 17 00:00:00 2001 From: wangshi Date: Thu, 31 Aug 2023 10:16:50 +0800 Subject: [PATCH] add components and format gn Signed-off-by: wangshi --- bundle.json | 5 ++++- graphic/vulkan/BUILD.gn | 8 ++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/bundle.json b/bundle.json index acc0ac6b6..91d042db5 100644 --- a/bundle.json +++ b/bundle.json @@ -22,7 +22,10 @@ "rom": "~256KB", "ram": "0KB", "deps": { - "components": [], + "components": [ + "graphic_2d", + "window_manager" + ], "third_party": [ "zlib", "libpng", diff --git a/graphic/vulkan/BUILD.gn b/graphic/vulkan/BUILD.gn index 238452e32..92dca40eb 100644 --- a/graphic/vulkan/BUILD.gn +++ b/graphic/vulkan/BUILD.gn @@ -16,7 +16,7 @@ import("//test/xts/tools/build/suite.gni") import("//foundation/graphic/graphic_2d/graphic_config.gni") group("ActsVkTest") { - testonly= true + testonly = true deps = [ "src/texture/build0001:ActsTextureTestSuite0001", "src/texture/build0002:ActsTextureTestSuite0002", @@ -45,9 +45,9 @@ action("cpvktest") { script = "cpvkTest.sh" outputs = [ "${target_out_dir}/cpVktest.log" ] root_vkgl_path = rebase_path("//") - args = ["$root_vkgl_path"] + args = [ "$root_vkgl_path" ] deps = [ - "//third_party/vk-gl-cts/external/vulkancts/modules/vulkan:deqp_vk_execute", - ":ActsVkTest", + ":ActsVkTest", + "//third_party/vk-gl-cts/external/vulkancts/modules/vulkan:deqp_vk_execute", ] } -- GitLab