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

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: Patch Set 2 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
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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 ], 707 ],
708 }], 708 }],
709 ['media_use_libwebm==1', { 709 ['media_use_libwebm==1', {
710 'dependencies': [ 710 'dependencies': [
711 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm', 711 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm',
712 ], 712 ],
713 'sources': [ 713 'sources': [
714 'capture/webm_muxer.cc', 714 'capture/webm_muxer.cc',
715 'capture/webm_muxer.h', 715 'capture/webm_muxer.h',
716 ], 716 ],
717 }, { # media_use_libwebm==0
718 'defines': [
719 'MEDIA_DISABLE_LIBWEBM',
720 ],
721 'direct_dependent_settings': {
722 'defines': [
723 'MEDIA_DISABLE_LIBWEBM',
724 ],
725 },
717 }], 726 }],
718 ['enable_browser_cdms==1', { 727 ['enable_browser_cdms==1', {
719 'sources': [ 728 'sources': [
720 'base/browser_cdm_factory.cc', 729 'base/browser_cdm_factory.cc',
721 'base/browser_cdm_factory.h', 730 'base/browser_cdm_factory.h',
722 ], 731 ],
723 }], 732 }],
724 ['OS=="android"', { 733 ['OS=="android"', {
725 'dependencies': [ 734 'dependencies': [
726 'media_android_jni_headers', 735 'media_android_jni_headers',
(...skipping 1389 matching lines...) Expand 10 before | Expand all | Expand 10 after
2116 'dependencies': [ 2125 'dependencies': [
2117 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2126 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2118 ], 2127 ],
2119 }], 2128 }],
2120 ], 2129 ],
2121 }, 2130 },
2122 ], 2131 ],
2123 }], 2132 }],
2124 ], 2133 ],
2125 } 2134 }
OLDNEW
« chrome/utility/extensions/extensions_handler.cc ('K') | « media/blink/webmediaplayer_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698