| 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 import("//chromecast/chromecast.gni") | 5 import("//chromecast/chromecast.gni") |
| 6 | 6 |
| 7 source_set("message_loop") { | 7 source_set("message_loop") { |
| 8 sources = [ | 8 sources = [ |
| 9 "media_message_loop.cc", | 9 "media_message_loop.cc", |
| 10 "media_message_loop.h", | 10 "media_message_loop.h", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 } | 34 } |
| 35 | 35 |
| 36 deps = [ | 36 deps = [ |
| 37 "//base", | 37 "//base", |
| 38 "//chromecast/public/media", | 38 "//chromecast/public/media", |
| 39 "//media", | 39 "//media", |
| 40 "//third_party/widevine/cdm:version_h", | 40 "//third_party/widevine/cdm:version_h", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| 43 | 43 |
| 44 source_set("decoder_buffer") { |
| 45 sources = [ |
| 46 "decoder_buffer_base.h", |
| 47 ] |
| 48 |
| 49 public_deps = [ |
| 50 "//chromecast/public/media", |
| 51 ] |
| 52 |
| 53 deps = [ |
| 54 "//base", |
| 55 ] |
| 56 } |
| 57 |
| 58 source_set("decoder") { |
| 59 sources = [ |
| 60 "cast_audio_decoder.h", |
| 61 "cast_audio_decoder_android.cc", |
| 62 "cast_audio_decoder_linux.cc", |
| 63 ] |
| 64 |
| 65 deps = [ |
| 66 ":decoder_buffer", |
| 67 "//base", |
| 68 "//media", |
| 69 "//media:shared_memory_support", |
| 70 ] |
| 71 } |
| 72 |
| 44 # TODO(slan): See if the dependency on //media can be broken. | 73 # TODO(slan): See if the dependency on //media can be broken. |
| 45 source_set("base") { | 74 source_set("base") { |
| 46 sources = [ | 75 sources = [ |
| 47 "decrypt_context_impl.cc", | 76 "decrypt_context_impl.cc", |
| 48 "decrypt_context_impl.h", | 77 "decrypt_context_impl.h", |
| 49 "decrypt_context_impl_clearkey.cc", | 78 "decrypt_context_impl_clearkey.cc", |
| 50 "decrypt_context_impl_clearkey.h", | 79 "decrypt_context_impl_clearkey.h", |
| 51 "media_caps.cc", | 80 "media_caps.cc", |
| 52 "media_caps.h", | 81 "media_caps.h", |
| 53 "media_codec_support.cc", | 82 "media_codec_support.cc", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 public_deps = [ | 151 public_deps = [ |
| 123 "//chromecast/public", | 152 "//chromecast/public", |
| 124 "//chromecast/public/media", | 153 "//chromecast/public/media", |
| 125 ] | 154 ] |
| 126 | 155 |
| 127 deps = [ | 156 deps = [ |
| 128 "//build/config/sanitizers:deps", | 157 "//build/config/sanitizers:deps", |
| 129 "//chromecast/media/cma/backend", | 158 "//chromecast/media/cma/backend", |
| 130 ] | 159 ] |
| 131 } | 160 } |
| OLD | NEW |