| Index: media/BUILD.gn
|
| diff --git a/media/BUILD.gn b/media/BUILD.gn
|
| index 52935a60966525d9463a28ad9d881b5ff48d21ac..498c0f2039e8690cbc031365e044e0d979b291ff 100644
|
| --- a/media/BUILD.gn
|
| +++ b/media/BUILD.gn
|
| @@ -523,6 +523,15 @@ if (is_ios) {
|
| }
|
| }
|
|
|
| +# TODO(GYP): Delete this after we've converted everything to GN.
|
| +# The _run targets exist only for compatibility w/ GYP.
|
| +group("media_unittests_run") {
|
| + testonly = true
|
| + deps = [
|
| + ":media_unittests",
|
| + ]
|
| +}
|
| +
|
| test("media_unittests") {
|
| sources = [
|
| "blink/skcanvas_video_renderer_unittest.cc",
|
| @@ -575,6 +584,10 @@ test("media_unittests") {
|
| "video/h264_poc_unittest.cc",
|
| ]
|
|
|
| + data = [
|
| + "test/data/",
|
| + ]
|
| +
|
| # TODO(wolenetz): Fix size_t to int trunctaion in win64.
|
| # See http://crbug.com/171009
|
| configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|
|
|