Skip to content

Commit

Permalink
Cherry pick PR #1372: Remove files referencing undefined symbols in m…
Browse files Browse the repository at this point in the history
…edia_test (#1377)

Refer to the original PR: #1372

b/296715826

Disable test file referencing undefined symbols causing linker errors in
windows based platform modular builds

Co-authored-by: Niranjan Yardi <[email protected]>
  • Loading branch information
1 parent 61fa7cb commit d9725db
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cobalt/media/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import("//starboard/build/config/os_definitions.gni")

config("media_config") {
if (!is_win) {
cflags_cc = [
Expand Down Expand Up @@ -138,4 +140,9 @@ target(gtest_target_type, "media_test") {
]

data_deps = [ "//cobalt/media/testing:cobalt_media_download_test_data" ]

# TODO: b/296715826 - Fix symbol resolution in cval_stats_test.cc.
if (sb_is_modular && is_host_win) {
sources -= [ "base/cval_stats_test.cc" ]
}
}

0 comments on commit d9725db

Please sign in to comment.