OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
ddorwin
2014/05/02 01:12:58
"encrypted_media" seems like a very specific name.
xhwang
2014/05/02 01:18:44
cdm sgtm. we already have src/media/cdm folder.
ycheo (away)
2014/05/02 01:39:34
Thanks for suggesting good component name.
The onl
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 'target_name': 'encrypted_media_common', | |
9 'type': 'static_library', | |
10 'dependencies': [ | |
11 '../base/base.gyp:base', | |
12 '../content/content.gyp:content_common', | |
13 '../ipc/ipc.gyp:ipc', | |
14 ], | |
15 'sources': [ | |
16 'encrypted_media/common/encrypted_media_message_generator.cc', | |
17 'encrypted_media/common/encrypted_media_message_generator.h', | |
18 'encrypted_media/common/encrypted_media_messages_android.h', | |
19 ], | |
20 }, | |
21 { | |
22 'target_name': 'encrypted_media_browser', | |
23 'type': 'static_library', | |
24 'dependencies': [ | |
25 'encrypted_media_common', | |
26 '../base/base.gyp:base', | |
27 '../content/content.gyp:content_browser', | |
28 '../content/content.gyp:content_common', | |
29 ], | |
30 'sources': [ | |
31 'encrypted_media/browser/encrypted_media_message_filter_android.cc', | |
32 'encrypted_media/browser/encrypted_media_message_filter_android.h', | |
33 ], | |
34 }, | |
35 ], | |
36 'conditions': [ | |
37 ['OS != "ios"', { | |
38 'targets': [ | |
39 { | |
40 'target_name': 'encrypted_media_renderer', | |
41 'type': 'static_library', | |
42 'dependencies': [ | |
43 'encrypted_media_common', | |
44 '../base/base.gyp:base', | |
45 '../content/content.gyp:content_common', | |
46 '../content/content.gyp:content_renderer', | |
47 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h ', | |
48 ], | |
49 'include_dirs': [ | |
50 # Needed by widevine_key_systems.cc. | |
51 '<(SHARED_INTERMEDIATE_DIR)', | |
52 ], | |
53 'sources': [ | |
54 'encrypted_media/renderer/widevine_key_systems.cc', | |
55 'encrypted_media/renderer/widevine_key_systems.h', | |
56 ], | |
57 }, | |
58 ], | |
59 }], | |
60 ], | |
61 } | |
OLD | NEW |