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/switching_media_renderer.cc', | |
26 'base/switching_media_renderer.h', | |
27 ], | 25 ], |
28 'conditions': [ | 26 'conditions': [ |
29 ['chromecast_branding=="Chrome"', { | 27 ['chromecast_branding=="Chrome"', { |
30 'dependencies': [ | 28 'dependencies': [ |
31 '<(cast_internal_gyp):media_base_internal', | 29 '<(cast_internal_gyp):media_base_internal', |
32 ], | 30 ], |
33 }, { | 31 }, { |
34 'sources': [ | 32 'sources': [ |
35 'base/key_systems_common_simple.cc', | 33 'base/key_systems_common_simple.cc', |
36 ], | 34 ], |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 'cma/test/media_component_device_feeder_for_test.h', | 272 'cma/test/media_component_device_feeder_for_test.h', |
275 'cma/test/mock_frame_consumer.cc', | 273 'cma/test/mock_frame_consumer.cc', |
276 'cma/test/mock_frame_consumer.h', | 274 'cma/test/mock_frame_consumer.h', |
277 'cma/test/mock_frame_provider.cc', | 275 'cma/test/mock_frame_provider.cc', |
278 'cma/test/mock_frame_provider.h', | 276 'cma/test/mock_frame_provider.h', |
279 'cma/test/run_all_unittests.cc', | 277 'cma/test/run_all_unittests.cc', |
280 ], | 278 ], |
281 }, | 279 }, |
282 ], | 280 ], |
283 } | 281 } |
OLD | NEW |