OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'chromecast_branding%': 'public', | 8 'chromecast_branding%': 'public', |
9 }, | 9 }, |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 'sources': [ | 140 'sources': [ |
141 'cma/backend/audio_decoder_default.cc', | 141 'cma/backend/audio_decoder_default.cc', |
142 'cma/backend/audio_decoder_default.h', | 142 'cma/backend/audio_decoder_default.h', |
143 'cma/backend/media_pipeline_backend_default.cc', | 143 'cma/backend/media_pipeline_backend_default.cc', |
144 'cma/backend/media_pipeline_backend_default.h', | 144 'cma/backend/media_pipeline_backend_default.h', |
145 'cma/backend/video_decoder_default.cc', | 145 'cma/backend/video_decoder_default.cc', |
146 'cma/backend/video_decoder_default.h', | 146 'cma/backend/video_decoder_default.h', |
147 ], | 147 ], |
148 }, | 148 }, |
149 { | 149 { |
| 150 'target_name': 'cma_decoder', |
| 151 'type': '<(component)', |
| 152 'dependencies': [ |
| 153 'cma_base', |
| 154 '../../base/base.gyp:base', |
| 155 '../../media/media.gyp:media', |
| 156 ], |
| 157 'sources': [ |
| 158 'cma/decoder/cast_audio_decoder.h', |
| 159 'cma/decoder/cast_audio_decoder_android.cc', |
| 160 'cma/decoder/cast_audio_decoder_linux.cc', |
| 161 ], |
| 162 }, |
| 163 { |
150 'target_name': 'cma_ipc', | 164 'target_name': 'cma_ipc', |
151 'type': '<(component)', | 165 'type': '<(component)', |
152 'dependencies': [ | 166 'dependencies': [ |
153 '../../base/base.gyp:base', | 167 '../../base/base.gyp:base', |
154 ], | 168 ], |
155 'sources': [ | 169 'sources': [ |
156 'cma/ipc/media_memory_chunk.cc', | 170 'cma/ipc/media_memory_chunk.cc', |
157 'cma/ipc/media_memory_chunk.h', | 171 'cma/ipc/media_memory_chunk.h', |
158 'cma/ipc/media_message.cc', | 172 'cma/ipc/media_message.cc', |
159 'cma/ipc/media_message.h', | 173 'cma/ipc/media_message.h', |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 'dependencies': [ | 331 'dependencies': [ |
318 '../../chromecast/chromecast.gyp:cast_public_api', | 332 '../../chromecast/chromecast.gyp:cast_public_api', |
319 'default_cma_backend' | 333 'default_cma_backend' |
320 ], | 334 ], |
321 'sources': [ | 335 'sources': [ |
322 'base/cast_media_default.cc', | 336 'base/cast_media_default.cc', |
323 ], | 337 ], |
324 }, | 338 }, |
325 ], # end of targets | 339 ], # end of targets |
326 } | 340 } |
OLD | NEW |