Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: components/cdm.gypi

Issue 253593002: Componentize EncryptedMediaMessageFilter and rename it CdmMessageFilter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed the component to 'cdm' and addresed the reviewers' comments Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'cdm_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 'cdm/common/encrypted_media_message_generator.cc',
17 'cdm/common/encrypted_media_message_generator.h',
18 'cdm/common/encrypted_media_messages_android.h',
19 ],
20 },
21 {
22 'target_name': 'cdm_browser',
23 'type': 'static_library',
24 'dependencies': [
25 'cdm_common',
26 '../base/base.gyp:base',
27 '../content/content.gyp:content_browser',
28 '../content/content.gyp:content_common',
29 ],
30 'sources': [
31 'cdm/browser/encrypted_media_message_filter_android.cc',
32 'cdm/browser/encrypted_media_message_filter_android.h',
33 ],
34 },
35 ],
36 'conditions': [
37 ['OS != "ios"', {
38 'targets': [
39 {
40 'target_name': 'cdm_renderer',
41 'type': 'static_library',
42 'dependencies': [
43 'cdm_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 'cdm/renderer/widevine_key_systems.cc',
55 'cdm/renderer/widevine_key_systems.h',
56 ],
57 },
58 ],
59 }],
60 ],
61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698