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 ], | 25 ], |
26 'conditions': [ | 26 'conditions': [ |
27 ['chromecast_branding=="Chrome"', { | 27 ['chromecast_branding=="Chrome"', { |
28 'dependencies': [ | 28 'dependencies': [ |
29 'internal/chromecast_internal.gyp:media_base_internal', | 29 '<(cast_internal_gyp):media_base_internal', |
30 ], | 30 ], |
31 }, { | 31 }, { |
32 'sources': [ | 32 'sources': [ |
33 'base/key_systems_common_simple.cc', | 33 'base/key_systems_common_simple.cc', |
34 ], | 34 ], |
35 }], | 35 }], |
36 ], | 36 ], |
37 }, | 37 }, |
38 { | 38 { |
39 'target_name': 'cma_base', | 39 'target_name': 'cma_base', |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 'cma/test/media_component_device_feeder_for_test.h', | 199 'cma/test/media_component_device_feeder_for_test.h', |
200 'cma/test/mock_frame_consumer.cc', | 200 'cma/test/mock_frame_consumer.cc', |
201 'cma/test/mock_frame_consumer.h', | 201 'cma/test/mock_frame_consumer.h', |
202 'cma/test/mock_frame_provider.cc', | 202 'cma/test/mock_frame_provider.cc', |
203 'cma/test/mock_frame_provider.h', | 203 'cma/test/mock_frame_provider.h', |
204 'cma/test/run_all_unittests.cc', | 204 'cma/test/run_all_unittests.cc', |
205 ], | 205 ], |
206 }, | 206 }, |
207 ], | 207 ], |
208 } | 208 } |
OLD | NEW |