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

Side by Side Diff: content/content_renderer.gypi

Issue 318753010: Introduce the ENABLE_BROWSER_CDMS macro. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ready for review. Please diff against PS1 for easy life. Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
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 'dependencies': [ 6 'dependencies': [
7 'content_common_mojo_bindings', 7 'content_common_mojo_bindings',
8 '../gin/gin.gyp:gin', 8 '../gin/gin.gyp:gin',
9 '../jingle/jingle.gyp:jingle_glue', 9 '../jingle/jingle.gyp:jingle_glue',
10 '../media/media.gyp:media', 10 '../media/media.gyp:media',
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 'renderer/media/crypto/key_systems.h', 246 'renderer/media/crypto/key_systems.h',
247 'renderer/media/crypto/key_systems_support_uma.cc', 247 'renderer/media/crypto/key_systems_support_uma.cc',
248 'renderer/media/crypto/key_systems_support_uma.h', 248 'renderer/media/crypto/key_systems_support_uma.h',
249 'renderer/media/crypto/pepper_cdm_wrapper.h', 249 'renderer/media/crypto/pepper_cdm_wrapper.h',
250 'renderer/media/crypto/pepper_cdm_wrapper_impl.cc', 250 'renderer/media/crypto/pepper_cdm_wrapper_impl.cc',
251 'renderer/media/crypto/pepper_cdm_wrapper_impl.h', 251 'renderer/media/crypto/pepper_cdm_wrapper_impl.h',
252 'renderer/media/crypto/ppapi_decryptor.cc', 252 'renderer/media/crypto/ppapi_decryptor.cc',
253 'renderer/media/crypto/ppapi_decryptor.h', 253 'renderer/media/crypto/ppapi_decryptor.h',
254 'renderer/media/crypto/proxy_decryptor.cc', 254 'renderer/media/crypto/proxy_decryptor.cc',
255 'renderer/media/crypto/proxy_decryptor.h', 255 'renderer/media/crypto/proxy_decryptor.h',
256 'renderer/media/crypto/proxy_media_keys.cc',
257 'renderer/media/crypto/proxy_media_keys.h',
258 'renderer/media/crypto/renderer_cdm_manager.cc',
259 'renderer/media/crypto/renderer_cdm_manager.h',
260 'renderer/media/media_stream_audio_level_calculator.cc', 256 'renderer/media/media_stream_audio_level_calculator.cc',
261 'renderer/media/media_stream_audio_level_calculator.h', 257 'renderer/media/media_stream_audio_level_calculator.h',
262 'renderer/media/media_stream_audio_renderer.cc', 258 'renderer/media/media_stream_audio_renderer.cc',
263 'renderer/media/media_stream_audio_renderer.h', 259 'renderer/media/media_stream_audio_renderer.h',
264 'renderer/media/media_stream_center.h', 260 'renderer/media/media_stream_center.h',
265 'renderer/media/media_stream_constraints_util.cc', 261 'renderer/media/media_stream_constraints_util.cc',
266 'renderer/media/media_stream_constraints_util.h', 262 'renderer/media/media_stream_constraints_util.h',
267 'renderer/media/media_stream_dispatcher.h', 263 'renderer/media/media_stream_dispatcher.h',
268 'renderer/media/media_stream_dispatcher_eventhandler.h', 264 'renderer/media/media_stream_dispatcher_eventhandler.h',
269 'renderer/media/media_stream_impl.h', 265 'renderer/media/media_stream_impl.h',
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 'sources': [ 813 'sources': [
818 '<@(private_renderer_plugin_webrtc_sources)', 814 '<@(private_renderer_plugin_webrtc_sources)',
819 ], 815 ],
820 }], 816 }],
821 ['enable_pepper_cdms != 1', { 817 ['enable_pepper_cdms != 1', {
822 'sources!': [ 818 'sources!': [
823 'renderer/media/crypto/ppapi_decryptor.cc', 819 'renderer/media/crypto/ppapi_decryptor.cc',
824 'renderer/media/crypto/ppapi_decryptor.h', 820 'renderer/media/crypto/ppapi_decryptor.h',
825 ], 821 ],
826 }], 822 }],
823 ['enable_browser_cdms==1', {
824 'sources': [
825 'renderer/media/crypto/proxy_media_keys.cc',
826 'renderer/media/crypto/proxy_media_keys.h',
827 'renderer/media/crypto/renderer_cdm_manager.cc',
828 'renderer/media/crypto/renderer_cdm_manager.h',
829 ],
830 }],
827 ], 831 ],
828 'target_conditions': [ 832 'target_conditions': [
829 ['OS=="android"', { 833 ['OS=="android"', {
830 'sources/': [ 834 'sources/': [
831 ['include', '^renderer/render_view_linux\\.cc$'], 835 ['include', '^renderer/render_view_linux\\.cc$'],
832 ], 836 ],
833 }], 837 }],
834 ], 838 ],
835 } 839 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698