diff --git a/bundle.json b/bundle.json index acc0ac6b68746cc7d4fab77e5b3808e744f00c79..91d042db530a527dc3379def83a4a18a34c5805f 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 238452e3208c5f0fe56600547ddce17502abeb63..92dca40ebde27f360c12a66278a175600806d63f 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", ] }