| 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 # All Chromecast platforms except Android should support the CMA pipeline by | 5 # All Chromecast platforms except Android should support the CMA pipeline by |
| 6 # default for media playback. | 6 # default for media playback. |
| 7 enable_cma = !is_android | 7 enable_cma = !is_android |
| 8 | 8 |
| 9 source_set("media") { | 9 source_set("media") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 if (enable_cma) { | 22 if (enable_cma) { |
| 23 sources += [ | 23 sources += [ |
| 24 "audio_pipeline_proxy.cc", | 24 "audio_pipeline_proxy.cc", |
| 25 "audio_pipeline_proxy.h", | 25 "audio_pipeline_proxy.h", |
| 26 "chromecast_media_renderer_factory.cc", | 26 "chromecast_media_renderer_factory.cc", |
| 27 "chromecast_media_renderer_factory.h", | 27 "chromecast_media_renderer_factory.h", |
| 28 "cma_message_filter_proxy.cc", | 28 "cma_message_filter_proxy.cc", |
| 29 "cma_message_filter_proxy.h", | 29 "cma_message_filter_proxy.h", |
| 30 "cma_renderer.cc", | 30 "cma_renderer.cc", |
| 31 "cma_renderer.h", | 31 "cma_renderer.h", |
| 32 "hole_frame_factory.cc", | |
| 33 "hole_frame_factory.h", | |
| 34 "media_channel_proxy.cc", | 32 "media_channel_proxy.cc", |
| 35 "media_channel_proxy.h", | 33 "media_channel_proxy.h", |
| 36 "media_pipeline_proxy.cc", | 34 "media_pipeline_proxy.cc", |
| 37 "media_pipeline_proxy.h", | 35 "media_pipeline_proxy.h", |
| 38 "video_pipeline_proxy.cc", | 36 "video_pipeline_proxy.cc", |
| 39 "video_pipeline_proxy.h", | 37 "video_pipeline_proxy.h", |
| 40 ] | 38 ] |
| 41 | 39 |
| 42 deps += [ | 40 deps += [ |
| 43 "//chromecast/media", | 41 "//chromecast/media", |
| 44 "//content/public/renderer", | 42 "//content/public/renderer", |
| 45 "//gpu/command_buffer/client:gles2_interface", | 43 "//gpu/command_buffer/client:gles2_interface", |
| 46 "//gpu/command_buffer/common", | 44 "//gpu/command_buffer/common", |
| 47 "//media", | 45 "//media", |
| 48 "//ui/gfx/geometry", | 46 "//ui/gfx/geometry", |
| 49 ] | 47 ] |
| 50 } | 48 } |
| 51 } | 49 } |
| OLD | NEW |