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