| 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 = [ |
| 11 "media_caps_observer_impl.cc", | 11 "media_caps_observer_impl.cc", |
| 12 "media_caps_observer_impl.h", | 12 "media_caps_observer_impl.h", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 deps = [ | 15 deps = [ |
| 16 "//chromecast/common/media:interfaces", | 16 "//chromecast/common/media:interfaces", |
| 17 "//chromecast/media/base", | 17 "//chromecast/media/base", |
| 18 "//skia", |
| 18 "//ui/gfx/geometry", | 19 "//ui/gfx/geometry", |
| 19 ] | 20 ] |
| 20 | 21 |
| 21 if (enable_cma) { | 22 if (enable_cma) { |
| 22 sources += [ | 23 sources += [ |
| 23 "audio_pipeline_proxy.cc", | 24 "audio_pipeline_proxy.cc", |
| 24 "audio_pipeline_proxy.h", | 25 "audio_pipeline_proxy.h", |
| 25 "chromecast_media_renderer_factory.cc", | 26 "chromecast_media_renderer_factory.cc", |
| 26 "chromecast_media_renderer_factory.h", | 27 "chromecast_media_renderer_factory.h", |
| 27 "cma_message_filter_proxy.cc", | 28 "cma_message_filter_proxy.cc", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 40 "//chromecast/common/media", | 41 "//chromecast/common/media", |
| 41 "//chromecast/media", | 42 "//chromecast/media", |
| 42 "//content/public/renderer", | 43 "//content/public/renderer", |
| 43 "//gpu/command_buffer/client:gles2_interface", | 44 "//gpu/command_buffer/client:gles2_interface", |
| 44 "//gpu/command_buffer/common", | 45 "//gpu/command_buffer/common", |
| 45 "//ipc", | 46 "//ipc", |
| 46 "//media", | 47 "//media", |
| 47 ] | 48 ] |
| 48 } | 49 } |
| 49 } | 50 } |
| OLD | NEW |