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

Side by Side Diff: chromecast/media/media.gyp

Issue 1105803002: Exposes a shlib interface for media/audio path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Name refactoring. Created 5 years, 8 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 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%': 'Chromium', 8 'chromecast_branding%': 'Chromium',
9 }, 9 },
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'media_audio',
13 'type': '<(component)',
14 'dependencies': [
15 '../../media/media.gyp:media',
16 ],
17 'sources': [
18 'audio/cast_audio_manager.cc',
19 'audio/cast_audio_manager.h',
20 'audio/cast_audio_manager_factory.cc',
21 'audio/cast_audio_manager_factory.h',
22 'audio/chromecast_device_audio_output_stream.cc',
23 'audio/chromecast_device_audio_output_stream.h',
24 ],
25 },
26 {
12 'target_name': 'media_base', 27 'target_name': 'media_base',
13 'type': '<(component)', 28 'type': '<(component)',
14 'dependencies': [ 29 'dependencies': [
15 '../../base/base.gyp:base', 30 '../../base/base.gyp:base',
16 '../../crypto/crypto.gyp:crypto', 31 '../../crypto/crypto.gyp:crypto',
17 '../../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h' , 32 '../../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h' ,
18 ], 33 ],
19 'sources': [ 34 'sources': [
20 'base/decrypt_context.cc', 35 'base/decrypt_context.cc',
21 'base/decrypt_context.h', 36 'base/decrypt_context.h',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 { 252 {
238 'target_name': 'cast_media', 253 'target_name': 'cast_media',
239 'type': 'none', 254 'type': 'none',
240 'dependencies': [ 255 'dependencies': [
241 'cma_backend', 256 'cma_backend',
242 'cma_base', 257 'cma_base',
243 'cma_filters', 258 'cma_filters',
244 'cma_ipc', 259 'cma_ipc',
245 'cma_ipc_streamer', 260 'cma_ipc_streamer',
246 'cma_pipeline', 261 'cma_pipeline',
262 'media_audio',
247 'media_cdm', 263 'media_cdm',
248 ], 264 ],
249 }, 265 },
250 { 266 {
251 'target_name': 'cast_media_unittests', 267 'target_name': 'cast_media_unittests',
252 'type': '<(gtest_target_type)', 268 'type': '<(gtest_target_type)',
253 'dependencies': [ 269 'dependencies': [
254 'cast_media', 270 'cast_media',
255 '../../base/base.gyp:base', 271 '../../base/base.gyp:base',
256 '../../base/base.gyp:base_i18n', 272 '../../base/base.gyp:base_i18n',
257 '../../base/base.gyp:test_support_base', 273 '../../base/base.gyp:test_support_base',
258 '../../chromecast/chromecast.gyp:cast_metrics_test_support', 274 '../../chromecast/chromecast.gyp:cast_metrics_test_support',
259 '../../media/media.gyp:media_test_support', 275 '../../media/media.gyp:media_test_support',
260 '../../testing/gmock.gyp:gmock', 276 '../../testing/gmock.gyp:gmock',
261 '../../testing/gtest.gyp:gtest', 277 '../../testing/gtest.gyp:gtest',
262 '../../testing/gtest.gyp:gtest_main', 278 '../../testing/gtest.gyp:gtest_main',
263 ], 279 ],
264 'sources': [ 280 'sources': [
281 'audio/cast_audio_manager_factory_test.cc',
282 'audio/cast_audio_manager_unittest.cc',
265 'cma/backend/audio_video_pipeline_device_unittest.cc', 283 'cma/backend/audio_video_pipeline_device_unittest.cc',
266 'cma/base/balanced_media_task_runner_unittest.cc', 284 'cma/base/balanced_media_task_runner_unittest.cc',
267 'cma/base/buffering_controller_unittest.cc', 285 'cma/base/buffering_controller_unittest.cc',
268 'cma/base/buffering_frame_provider_unittest.cc', 286 'cma/base/buffering_frame_provider_unittest.cc',
269 'cma/filters/demuxer_stream_adapter_unittest.cc', 287 'cma/filters/demuxer_stream_adapter_unittest.cc',
270 'cma/ipc/media_message_fifo_unittest.cc', 288 'cma/ipc/media_message_fifo_unittest.cc',
271 'cma/ipc/media_message_unittest.cc', 289 'cma/ipc/media_message_unittest.cc',
272 'cma/ipc_streamer/av_streamer_unittest.cc', 290 'cma/ipc_streamer/av_streamer_unittest.cc',
273 'cma/pipeline/audio_video_pipeline_impl_unittest.cc', 291 'cma/pipeline/audio_video_pipeline_impl_unittest.cc',
274 'cma/test/frame_generator_for_test.cc', 292 'cma/test/frame_generator_for_test.cc',
275 'cma/test/frame_generator_for_test.h', 293 'cma/test/frame_generator_for_test.h',
276 'cma/test/frame_segmenter_for_test.cc', 294 'cma/test/frame_segmenter_for_test.cc',
277 'cma/test/frame_segmenter_for_test.h', 295 'cma/test/frame_segmenter_for_test.h',
278 'cma/test/media_component_device_feeder_for_test.cc', 296 'cma/test/media_component_device_feeder_for_test.cc',
279 'cma/test/media_component_device_feeder_for_test.h', 297 'cma/test/media_component_device_feeder_for_test.h',
280 'cma/test/mock_frame_consumer.cc', 298 'cma/test/mock_frame_consumer.cc',
281 'cma/test/mock_frame_consumer.h', 299 'cma/test/mock_frame_consumer.h',
282 'cma/test/mock_frame_provider.cc', 300 'cma/test/mock_frame_provider.cc',
283 'cma/test/mock_frame_provider.h', 301 'cma/test/mock_frame_provider.h',
284 'cma/test/run_all_unittests.cc', 302 'cma/test/run_all_unittests.cc',
285 ], 303 ],
286 }, 304 },
287 ], 305 ],
288 } 306 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698