Skip to content

Commit

Permalink
Cherry pick PR #3501: Fix starboard_platform_tests install target dep…
Browse files Browse the repository at this point in the history
…endency (#3522)

Refer to the original PR: #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 <nyardi@google.com>
  • Loading branch information
cobalt-github-releaser-bot and niranjanyardi committed Jul 10, 2024
1 parent 10b28bf commit 46bb83b
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 @@ -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 ]
}
Expand Down

0 comments on commit 46bb83b

Please sign in to comment.