From 46bb83b765ccf64b7e86ce36085f31d130101ba8 Mon Sep 17 00:00:00 2001 From: cobalt-github-releaser-bot <95661244+cobalt-github-releaser-bot@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:06:58 -0700 Subject: [PATCH] Cherry pick PR #3501: Fix starboard_platform_tests install target dependency (#3522) Refer to the original PR: https://github.com/youtube/cobalt/pull/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 Co-authored-by: Niranjan Yardi --- starboard/BUILD.gn | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/starboard/BUILD.gn b/starboard/BUILD.gn index 639c21865fce..5ff268a71a7f 100644 --- a/starboard/BUILD.gn +++ b/starboard/BUILD.gn @@ -43,7 +43,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 ] }