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

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

Issue 1372393007: [Chromecast] Upgrade to new CMA backend API (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Fix end_to_end test + address slan comments Created 5 years, 2 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 source_set("media") { 5 source_set("media") {
6 sources = [ 6 sources = [
7 "audio_pipeline.cc",
8 "audio_pipeline.h",
7 "audio_pipeline_proxy.cc", 9 "audio_pipeline_proxy.cc",
8 "audio_pipeline_proxy.h", 10 "audio_pipeline_proxy.h",
9 "capabilities_message_filter.cc", 11 "capabilities_message_filter.cc",
10 "capabilities_message_filter.h", 12 "capabilities_message_filter.h",
11 "chromecast_media_renderer_factory.cc", 13 "chromecast_media_renderer_factory.cc",
12 "chromecast_media_renderer_factory.h", 14 "chromecast_media_renderer_factory.h",
13 "cma_message_filter_proxy.cc", 15 "cma_message_filter_proxy.cc",
14 "cma_message_filter_proxy.h", 16 "cma_message_filter_proxy.h",
15 "media_channel_proxy.cc", 17 "media_channel_proxy.cc",
16 "media_channel_proxy.h", 18 "media_channel_proxy.h",
17 "media_pipeline_proxy.cc", 19 "media_pipeline_proxy.cc",
18 "media_pipeline_proxy.h", 20 "media_pipeline_proxy.h",
21 "renderer_media_pipeline.h",
22 "video_pipeline.cc",
23 "video_pipeline.h",
19 "video_pipeline_proxy.cc", 24 "video_pipeline_proxy.cc",
20 "video_pipeline_proxy.h", 25 "video_pipeline_proxy.h",
21 ] 26 ]
22 27
23 deps = [ 28 deps = [
24 "//base", 29 "//base",
25 "//chromecast/common/media", 30 "//chromecast/common/media",
26 "//chromecast/media", 31 "//chromecast/media",
27 "//content/public/renderer", 32 "//content/public/renderer",
28 "//ipc", 33 "//ipc",
29 "//media", 34 "//media",
30 ] 35 ]
31 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698