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': { |
11 'include_dirs': [ | 11 'include_dirs': [ |
12 '../..', # Root of Chromium checkout | 12 '../..', # Root of Chromium checkout |
13 '../public/', # Public APIs | 13 '../public/', # Public APIs |
14 ], | 14 ], |
15 }, | 15 }, |
16 'targets': [ | 16 'targets': [ |
17 # TODO(slan): delete this target once Chromecast M44/earlier is obsolete. | |
18 # See: b/21639416 | |
19 { | |
20 'target_name': 'libffmpegsumo', | |
21 'type': 'loadable_module', | |
22 'sources': ['empty.cc'], | |
23 }, | |
24 { | 17 { |
25 'target_name': 'media_audio', | 18 'target_name': 'media_audio', |
26 'type': '<(component)', | 19 'type': '<(component)', |
27 'dependencies': [ | 20 'dependencies': [ |
28 '../../media/media.gyp:media', | 21 '../../media/media.gyp:media', |
29 ], | 22 ], |
30 'sources': [ | 23 'sources': [ |
31 'audio/cast_audio_manager.cc', | 24 'audio/cast_audio_manager.cc', |
32 'audio/cast_audio_manager.h', | 25 'audio/cast_audio_manager.h', |
33 'audio/cast_audio_manager_factory.cc', | 26 'audio/cast_audio_manager_factory.cc', |
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 'dependencies': [ | 317 'dependencies': [ |
325 '../../chromecast/chromecast.gyp:cast_public_api', | 318 '../../chromecast/chromecast.gyp:cast_public_api', |
326 'default_cma_backend' | 319 'default_cma_backend' |
327 ], | 320 ], |
328 'sources': [ | 321 'sources': [ |
329 'base/cast_media_default.cc', | 322 'base/cast_media_default.cc', |
330 ], | 323 ], |
331 }, | 324 }, |
332 ], # end of targets | 325 ], # end of targets |
333 } | 326 } |
OLD | NEW |