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%': 'Chromium', | 8 'chromecast_branding%': 'Chromium', |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'media_base', | 12 'target_name': 'media_base', |
13 'type': '<(component)', | 13 'type': '<(component)', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
16 '../../crypto/crypto.gyp:crypto', | 16 '../../crypto/crypto.gyp:crypto', |
17 '../../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h'
, | 17 '../../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h'
, |
18 ], | 18 ], |
19 'sources': [ | 19 'sources': [ |
20 'base/decrypt_context.cc', | 20 'base/decrypt_context.cc', |
21 'base/decrypt_context.h', | 21 'base/decrypt_context.h', |
22 'base/decrypt_context_clearkey.cc', | 22 'base/decrypt_context_clearkey.cc', |
23 'base/decrypt_context_clearkey.h', | 23 'base/decrypt_context_clearkey.h', |
24 'base/key_systems_common.cc', | 24 'base/key_systems_common.cc', |
25 'base/key_systems_common.h', | 25 'base/key_systems_common.h', |
26 'base/media_caps.cc', | 26 'base/media_caps.cc', |
27 'base/media_caps.h', | 27 'base/media_caps.h', |
| 28 'base/media_codec_support.cc', |
| 29 'base/media_codec_support.h', |
28 'base/switching_media_renderer.cc', | 30 'base/switching_media_renderer.cc', |
29 'base/switching_media_renderer.h', | 31 'base/switching_media_renderer.h', |
30 ], | 32 ], |
31 'conditions': [ | 33 'conditions': [ |
32 ['chromecast_branding=="Chrome"', { | 34 ['chromecast_branding=="Chrome"', { |
33 'dependencies': [ | 35 'dependencies': [ |
34 '../internal/chromecast_internal.gyp:media_base_internal', | 36 '../internal/chromecast_internal.gyp:media_base_internal', |
35 ], | 37 ], |
36 }, { | 38 }, { |
37 'sources': [ | 39 'sources': [ |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 'cma/test/media_component_device_feeder_for_test.h', | 279 'cma/test/media_component_device_feeder_for_test.h', |
278 'cma/test/mock_frame_consumer.cc', | 280 'cma/test/mock_frame_consumer.cc', |
279 'cma/test/mock_frame_consumer.h', | 281 'cma/test/mock_frame_consumer.h', |
280 'cma/test/mock_frame_provider.cc', | 282 'cma/test/mock_frame_provider.cc', |
281 'cma/test/mock_frame_provider.h', | 283 'cma/test/mock_frame_provider.h', |
282 'cma/test/run_all_unittests.cc', | 284 'cma/test/run_all_unittests.cc', |
283 ], | 285 ], |
284 }, | 286 }, |
285 ], | 287 ], |
286 } | 288 } |
OLD | NEW |