Skip to content

Commit

Permalink
Fix starboard_platform_tests install target dependency (#3501)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
niranjanyardi committed Jun 11, 2024
1 parent 939ed4f commit 515d982
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion starboard/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
}
Expand Down

0 comments on commit 515d982

Please sign in to comment.