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

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

Issue 2300993003: CmaRenderer is dead. Long live MojoRenderer. (Closed)
Patch Set: update OWNERS file Created 4 years, 3 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
« no previous file with comments | « chromecast/common/media/shared_memory_chunk.cc ('k') | chromecast/media/cma/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//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 public_deps = [ 9 public_deps = [
10 "//chromecast/media/audio", 10 "//chromecast/media/audio",
(...skipping 10 matching lines...) Expand all
21 "base/media_resource_tracker_unittest.cc", 21 "base/media_resource_tracker_unittest.cc",
22 "cma/backend/audio_video_pipeline_device_unittest.cc", 22 "cma/backend/audio_video_pipeline_device_unittest.cc",
23 "cma/base/balanced_media_task_runner_unittest.cc", 23 "cma/base/balanced_media_task_runner_unittest.cc",
24 "cma/base/buffering_controller_unittest.cc", 24 "cma/base/buffering_controller_unittest.cc",
25 "cma/base/buffering_frame_provider_unittest.cc", 25 "cma/base/buffering_frame_provider_unittest.cc",
26 "cma/base/decoder_buffer_adapter_unittest.cc", 26 "cma/base/decoder_buffer_adapter_unittest.cc",
27 "cma/base/demuxer_stream_adapter_unittest.cc", 27 "cma/base/demuxer_stream_adapter_unittest.cc",
28 "cma/base/demuxer_stream_for_test.cc", 28 "cma/base/demuxer_stream_for_test.cc",
29 "cma/base/demuxer_stream_for_test.h", 29 "cma/base/demuxer_stream_for_test.h",
30 "cma/base/multi_demuxer_stream_adapter_unittest.cc", 30 "cma/base/multi_demuxer_stream_adapter_unittest.cc",
31 "cma/ipc/media_message_fifo_unittest.cc",
32 "cma/ipc/media_message_unittest.cc",
33 "cma/ipc_streamer/av_streamer_unittest.cc",
34 "cma/pipeline/audio_video_pipeline_impl_unittest.cc", 31 "cma/pipeline/audio_video_pipeline_impl_unittest.cc",
35 "cma/test/frame_generator_for_test.cc", 32 "cma/test/frame_generator_for_test.cc",
36 "cma/test/frame_generator_for_test.h", 33 "cma/test/frame_generator_for_test.h",
37 "cma/test/frame_segmenter_for_test.cc", 34 "cma/test/frame_segmenter_for_test.cc",
38 "cma/test/frame_segmenter_for_test.h", 35 "cma/test/frame_segmenter_for_test.h",
39 "cma/test/mock_frame_consumer.cc", 36 "cma/test/mock_frame_consumer.cc",
40 "cma/test/mock_frame_consumer.h", 37 "cma/test/mock_frame_consumer.h",
41 "cma/test/mock_frame_provider.cc", 38 "cma/test/mock_frame_provider.cc",
42 "cma/test/mock_frame_provider.h", 39 "cma/test/mock_frame_provider.h",
43 "cma/test/run_all_unittests.cc", 40 "cma/test/run_all_unittests.cc",
44 ] 41 ]
45 42
46 deps = [ 43 deps = [
47 ":media", 44 ":media",
48 "//base", 45 "//base",
49 "//base:i18n", 46 "//base:i18n",
50 "//base/test:test_support", 47 "//base/test:test_support",
51 "//chromecast/base", 48 "//chromecast/base",
52 "//chromecast/base/metrics:test_support", 49 "//chromecast/base/metrics:test_support",
53 "//chromecast/media/audio", 50 "//chromecast/media/audio",
54 "//chromecast/media/cma/backend", 51 "//chromecast/media/cma/backend",
55 "//chromecast/media/cma/base", 52 "//chromecast/media/cma/base",
56 "//chromecast/media/cma/ipc",
57 "//chromecast/media/cma/ipc_streamer",
58 "//chromecast/media/cma/pipeline", 53 "//chromecast/media/cma/pipeline",
59 "//chromecast/public", 54 "//chromecast/public",
60 "//media", 55 "//media",
61 "//media/base:test_support", 56 "//media/base:test_support",
62 "//testing/gmock", 57 "//testing/gmock",
63 "//testing/gtest", 58 "//testing/gtest",
64 "//ui/display", 59 "//ui/display",
65 "//ui/gfx/geometry", 60 "//ui/gfx/geometry",
66 ] 61 ]
67 62
(...skipping 24 matching lines...) Expand all
92 "//testing/gmock", 87 "//testing/gmock",
93 "//testing/gtest", 88 "//testing/gtest",
94 ] 89 ]
95 90
96 if (chromecast_branding == "public") { 91 if (chromecast_branding == "public") {
97 # Link default libcast_media_1.0 statically not to link dummy one 92 # Link default libcast_media_1.0 statically not to link dummy one
98 # dynamically for public unittests. 93 # dynamically for public unittests.
99 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ] 94 deps += [ "//chromecast/media/base:libcast_media_1.0_default_core" ]
100 } 95 }
101 } 96 }
OLDNEW
« no previous file with comments | « chromecast/common/media/shared_memory_chunk.cc ('k') | chromecast/media/cma/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698