Skip to content

Commit

Permalink
Remove gtest reverse deps from Starboard (#4087)
Browse files Browse the repository at this point in the history
Removes reverse dependency on Cobalt from test targets

b/364421874
  • Loading branch information
kaidokert committed Sep 4, 2024
1 parent 4b176e4 commit 5f6f700
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion starboard/extension/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ target(gtest_target_type, "extension_test") {
testonly = true
has_pedantic_warnings = true
sources = [
"//starboard/common/test_main.cc",
"enhanced_audio_test.cc",
"extension_test.cc",
]
deps = [
"//cobalt/test:run_all_unittests",
"//starboard:starboard_group",
"//testing/gmock",
"//testing/gtest",
Expand Down
6 changes: 4 additions & 2 deletions starboard/shared/ffmpeg/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,13 @@ static_library("ffmpeg_dispatch_sources") {

target(gtest_target_type, "ffmpeg_demuxer_test") {
testonly = true
sources = [ "ffmpeg_demuxer_test.cc" ]
sources = [
"//starboard/common/test_main.cc",
"ffmpeg_demuxer_test.cc",
]
configs += [ "//starboard/build/config:starboard_implementation" ]
deps = [
":ffmpeg_dispatch_sources",
"//cobalt/test:run_all_unittests",
"//starboard:starboard_group",
"//starboard/common",
"//testing/gmock",
Expand Down

0 comments on commit 5f6f700

Please sign in to comment.