Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: chromecast/media/BUILD.gn

Issue 1105803002: Exposes a shlib interface for media/audio path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment out streaming test until the default implementation is improved. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 group("media") { 7 group("media") {
8 deps = [ 8 deps = [
9 "//chromecast/media/audio",
9 "//chromecast/media/base", 10 "//chromecast/media/base",
10 "//chromecast/media/cdm", 11 "//chromecast/media/cdm",
11 "//chromecast/media/cma", 12 "//chromecast/media/cma",
12 ] 13 ]
13 } 14 }
14 15
15 test("cast_media_unittests") { 16 test("cast_media_unittests") {
16 sources = [ 17 sources = [
18 "audio/cast_audio_manager_factory_test.cc",
19 "audio/cast_audio_manager_test.cc",
17 "cma/backend/audio_video_pipeline_device_unittest.cc", 20 "cma/backend/audio_video_pipeline_device_unittest.cc",
18 "cma/base/balanced_media_task_runner_unittest.cc", 21 "cma/base/balanced_media_task_runner_unittest.cc",
19 "cma/base/buffering_controller_unittest.cc", 22 "cma/base/buffering_controller_unittest.cc",
20 "cma/base/buffering_frame_provider_unittest.cc", 23 "cma/base/buffering_frame_provider_unittest.cc",
21 "cma/filters/demuxer_stream_adapter_unittest.cc", 24 "cma/filters/demuxer_stream_adapter_unittest.cc",
22 "cma/filters/multi_demuxer_stream_adapter_unittest.cc", 25 "cma/filters/multi_demuxer_stream_adapter_unittest.cc",
23 "cma/ipc/media_message_fifo_unittest.cc", 26 "cma/ipc/media_message_fifo_unittest.cc",
24 "cma/ipc/media_message_unittest.cc", 27 "cma/ipc/media_message_unittest.cc",
25 "cma/ipc_streamer/av_streamer_unittest.cc", 28 "cma/ipc_streamer/av_streamer_unittest.cc",
26 "cma/pipeline/audio_video_pipeline_impl_unittest.cc", 29 "cma/pipeline/audio_video_pipeline_impl_unittest.cc",
(...skipping 21 matching lines...) Expand all
48 "//base/test:test_support", 51 "//base/test:test_support",
49 "//chromecast/base/metrics:test_support", 52 "//chromecast/base/metrics:test_support",
50 "//chromecast/public", 53 "//chromecast/public",
51 "//media", 54 "//media",
52 "//media/base:test_support", 55 "//media/base:test_support",
53 "//testing/gmock", 56 "//testing/gmock",
54 "//testing/gtest", 57 "//testing/gtest",
55 "//ui/gfx/geometry", 58 "//ui/gfx/geometry",
56 ] 59 ]
57 } 60 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698