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

Unified Diff: chromecast/media/media.gyp

Issue 568243002: Adds initial key systems support for Chromecast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address last comments Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/media/base/key_systems_common_simple.cc ('k') | chromecast/shell/renderer/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/media/media.gyp
diff --git a/chromecast/media/media.gyp b/chromecast/media/media.gyp
index 0674a9e63cc74fd605b27791940d127da87d7748..3cebc65631390b030fed5789ea312516d005f8ea 100644
--- a/chromecast/media/media.gyp
+++ b/chromecast/media/media.gyp
@@ -3,8 +3,34 @@
# found in the LICENSE file.
{
+ 'variables': {
+ 'chromecast_branding%': 'Chromium',
+ },
'targets': [
{
+ 'target_name': 'media_base',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
+ ],
+ 'sources': [
+ 'base/key_systems_common.cc',
+ 'base/key_systems_common.h',
+ ],
+ 'conditions': [
+ ['chromecast_branding=="Chrome"', {
+ 'dependencies': [
+ 'internal/chromecast_internal.gyp:media_base_internal',
+ ],
+ }, {
+ 'sources': [
+ 'base/key_systems_common_simple.cc',
+ ],
+ }],
+ ],
+ },
+ {
'target_name': 'cma_base',
'type': '<(component)',
'dependencies': [
« no previous file with comments | « chromecast/media/base/key_systems_common_simple.cc ('k') | chromecast/shell/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698