Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//chromecast/chromecast.gni") | 5 import("//chromecast/chromecast.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 group("media") { | 8 group("media") { |
| 9 deps = [ | 9 deps = [ |
| 10 "//chromecast/media/audio", | 10 "//chromecast/media/audio", |
| 11 "//chromecast/media/base", | 11 "//chromecast/media/base", |
| 12 "//chromecast/media/cdm", | 12 "//chromecast/media/cdm", |
| 13 "//chromecast/media/cma", | 13 "//chromecast/media/cma", |
| 14 ] | 14 ] |
| 15 } | 15 } |
| 16 | 16 |
| 17 test("cast_media_unittests") { | 17 test("cast_media_unittests") { |
| 18 sources = [ | 18 sources = [ |
| 19 "audio/cast_audio_output_stream_unittest.cc", | |
|
alokp
2015/09/21 19:38:35
Is this required because we do not have media/BUIL
| |
| 19 "cma/backend/audio_video_pipeline_device_unittest.cc", | 20 "cma/backend/audio_video_pipeline_device_unittest.cc", |
| 20 "cma/base/balanced_media_task_runner_unittest.cc", | 21 "cma/base/balanced_media_task_runner_unittest.cc", |
| 21 "cma/base/buffering_controller_unittest.cc", | 22 "cma/base/buffering_controller_unittest.cc", |
| 22 "cma/base/buffering_frame_provider_unittest.cc", | 23 "cma/base/buffering_frame_provider_unittest.cc", |
| 23 "cma/filters/demuxer_stream_adapter_unittest.cc", | 24 "cma/filters/demuxer_stream_adapter_unittest.cc", |
| 24 "cma/filters/multi_demuxer_stream_adapter_unittest.cc", | 25 "cma/filters/multi_demuxer_stream_adapter_unittest.cc", |
| 25 "cma/ipc/media_message_fifo_unittest.cc", | 26 "cma/ipc/media_message_fifo_unittest.cc", |
| 26 "cma/ipc/media_message_unittest.cc", | 27 "cma/ipc/media_message_unittest.cc", |
| 27 "cma/ipc_streamer/av_streamer_unittest.cc", | 28 "cma/ipc_streamer/av_streamer_unittest.cc", |
| 28 "cma/pipeline/audio_video_pipeline_impl_unittest.cc", | 29 "cma/pipeline/audio_video_pipeline_impl_unittest.cc", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 70 "$libcast_media_path:libcast_media_1.0", | 71 "$libcast_media_path:libcast_media_1.0", |
| 71 ] | 72 ] |
| 72 } | 73 } |
| 73 } | 74 } |
| 74 | 75 |
| 75 # TODO(slan): delete this target once Chromecast M44/earlier is obsolete. | 76 # TODO(slan): delete this target once Chromecast M44/earlier is obsolete. |
| 76 # See: b/21639416 | 77 # See: b/21639416 |
| 77 shared_library("libffmpegsumo") { | 78 shared_library("libffmpegsumo") { |
| 78 output_name = "libffmpegsumo" | 79 output_name = "libffmpegsumo" |
| 79 } | 80 } |
| OLD | NEW |