From 515d982464d35ab00061fa4b0b7be7bfd875b7c3 Mon Sep 17 00:00:00 2001 From: Niranjan Yardi Date: Tue, 11 Jun 2024 13:44:01 -0700 Subject: [PATCH] Fix starboard_platform_tests install target dependency (#3501) b/345848337 starboard_platform_tests_install was being excluded from the build graph as it didn't have any target depending on it. This change adds a dependency on "starboard_platform_tests_install" Test-On-Device: true --- starboard/BUILD.gn | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/starboard/BUILD.gn b/starboard/BUILD.gn index aa50544c013f..fe4ac6118cab 100644 --- a/starboard/BUILD.gn +++ b/starboard/BUILD.gn @@ -39,7 +39,10 @@ group("gn_all") { } if (platform_tests_path == "") { - deps += [ ":starboard_platform_tests($starboard_toolchain)" ] + deps += [ + ":starboard_platform_tests($starboard_toolchain)", + ":starboard_platform_tests_install($starboard_toolchain)", + ] } else { deps += [ platform_tests_path ] }