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

Side by Side Diff: media/media.gyp

Issue 1415793003: fix build when ffmpeg, libvpx and libwebm are disabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « media/blink/webmediaplayer_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 ], 711 ],
712 }], 712 }],
713 ['media_use_libwebm==1', { 713 ['media_use_libwebm==1', {
714 'dependencies': [ 714 'dependencies': [
715 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm', 715 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm',
716 ], 716 ],
717 'sources': [ 717 'sources': [
718 'capture/webm_muxer.cc', 718 'capture/webm_muxer.cc',
719 'capture/webm_muxer.h', 719 'capture/webm_muxer.h',
720 ], 720 ],
721 }, { # media_use_libwebm==0
722 'defines': [
723 'MEDIA_DISABLE_LIBWEBM',
724 ],
725 'direct_dependent_settings': {
726 'defines': [
727 'MEDIA_DISABLE_LIBWEBM',
728 ],
729 },
721 }], 730 }],
722 ['OS=="android"', { 731 ['OS=="android"', {
723 'dependencies': [ 732 'dependencies': [
724 'media_android_jni_headers', 733 'media_android_jni_headers',
725 'media_java', 734 'media_java',
726 'player_android', 735 'player_android',
727 'video_capture_android_jni_headers', 736 'video_capture_android_jni_headers',
728 ], 737 ],
729 'sources!': [ 738 'sources!': [
730 'base/audio_video_metadata_extractor.cc', 739 'base/audio_video_metadata_extractor.cc',
(...skipping 1383 matching lines...) Expand 10 before | Expand all | Expand 10 after
2114 'dependencies': [ 2123 'dependencies': [
2115 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2124 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2116 ], 2125 ],
2117 }], 2126 }],
2118 ], 2127 ],
2119 }, 2128 },
2120 ], 2129 ],
2121 }], 2130 }],
2122 ], 2131 ],
2123 } 2132 }
OLDNEW
« no previous file with comments | « media/blink/webmediaplayer_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698