diff options
author | gunsch <gunsch@chromium.org> | 2015-06-04 15:39:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-04 22:41:04 +0000 |
commit | 0af11e456d0992f4ef8c67b4d67056ffe151e51e (patch) | |
tree | fb961549eeb498b6678bb35da0e7dd860797ff53 /chromecast | |
parent | 86b518de01b889abe6c8db447ab68537db03a3d6 (diff) | |
download | chromium_src-0af11e456d0992f4ef8c67b4d67056ffe151e51e.zip chromium_src-0af11e456d0992f4ef8c67b4d67056ffe151e51e.tar.gz chromium_src-0af11e456d0992f4ef8c67b4d67056ffe151e51e.tar.bz2 |
Chromecast: adds fake libffmpegsumo target for more graceful internal build.
R=alokp@chromium.org
BUG=b/21639416
Review URL: https://codereview.chromium.org/1165943004
Cr-Commit-Position: refs/heads/master@{#332943}
Diffstat (limited to 'chromecast')
-rw-r--r-- | chromecast/chromecast.gyp | 4 | ||||
-rw-r--r-- | chromecast/media/empty.cc | 0 | ||||
-rw-r--r-- | chromecast/media/media.gyp | 7 |
3 files changed, 7 insertions, 4 deletions
diff --git a/chromecast/chromecast.gyp b/chromecast/chromecast.gyp index f0782ee..7fe7560 100644 --- a/chromecast/chromecast.gyp +++ b/chromecast/chromecast.gyp @@ -51,10 +51,6 @@ 'public/video_plane.h', ], }, - # TODO(gunsch): Remove this fake target once it's either added or no - # longer referenced from internal code. - {'target_name': 'cast_media_audio', 'type': 'none'}, - { 'target_name': 'cast_base', 'type': '<(component)', diff --git a/chromecast/media/empty.cc b/chromecast/media/empty.cc new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/chromecast/media/empty.cc diff --git a/chromecast/media/media.gyp b/chromecast/media/media.gyp index f7bdcf0..7464572 100644 --- a/chromecast/media/media.gyp +++ b/chromecast/media/media.gyp @@ -10,6 +10,13 @@ 'use_default_libcast_media%': 1, }, 'targets': [ + # TODO(gunsch): delete this target once Chromecast M44/earlier is obsolete. + # See: b/21639416 + { + 'target_name': 'libffmpegsumo', + 'type': 'loadable_module', + 'sources': ['empty.cc'], + }, { 'target_name': 'media_base', 'type': '<(component)', |