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

Side by Side Diff: media/media.gyp

Issue 1407933010: media: Make MediaKeys ref-counted. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address timav@'s comments. 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 'dependencies': [ 707 'dependencies': [
708 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm', 708 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm',
709 ], 709 ],
710 'sources': [ 710 'sources': [
711 'capture/webm_muxer.cc', 711 'capture/webm_muxer.cc',
712 'capture/webm_muxer.h', 712 'capture/webm_muxer.h',
713 ], 713 ],
714 }], 714 }],
715 ['enable_browser_cdms==1', { 715 ['enable_browser_cdms==1', {
716 'sources': [ 716 'sources': [
717 'base/browser_cdm.cc',
718 'base/browser_cdm.h',
719 'base/browser_cdm_factory.cc', 717 'base/browser_cdm_factory.cc',
720 'base/browser_cdm_factory.h', 718 'base/browser_cdm_factory.h',
721 ], 719 ],
722 }], 720 }],
723 ['OS=="android"', { 721 ['OS=="android"', {
724 'dependencies': [ 722 'dependencies': [
725 'media_android_jni_headers', 723 'media_android_jni_headers',
726 'media_java', 724 'media_java',
727 'player_android', 725 'player_android',
728 'video_capture_android_jni_headers', 726 'video_capture_android_jni_headers',
(...skipping 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after
2114 'dependencies': [ 2112 'dependencies': [
2115 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2113 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2116 ], 2114 ],
2117 }], 2115 }],
2118 ], 2116 ],
2119 }, 2117 },
2120 ], 2118 ],
2121 }], 2119 }],
2122 ], 2120 ],
2123 } 2121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698