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

Side by Side Diff: webkit/media/webkit_media.gypi

Issue 10704241: Add PpapiDecryptor which wraps a CDM plugin. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resolve comments and rebase. Created 8 years, 5 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'webkit_media', 8 'target_name': 'webkit_media',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 16 matching lines...) Expand all
27 'audio_decoder.cc', 27 'audio_decoder.cc',
28 'audio_decoder.h', 28 'audio_decoder.h',
29 'buffered_data_source.cc', 29 'buffered_data_source.cc',
30 'buffered_data_source.h', 30 'buffered_data_source.h',
31 'buffered_resource_loader.cc', 31 'buffered_resource_loader.cc',
32 'buffered_resource_loader.h', 32 'buffered_resource_loader.h',
33 'cache_util.cc', 33 'cache_util.cc',
34 'cache_util.h', 34 'cache_util.h',
35 'crypto/key_systems.cc', 35 'crypto/key_systems.cc',
36 'crypto/key_systems.h', 36 'crypto/key_systems.h',
37 'crypto/ppapi_decryptor.cc',
38 'crypto/ppapi_decryptor.h',
37 'crypto/proxy_decryptor.cc', 39 'crypto/proxy_decryptor.cc',
38 'crypto/proxy_decryptor.h', 40 'crypto/proxy_decryptor.h',
39 'filter_helpers.cc', 41 'filter_helpers.cc',
40 'filter_helpers.h', 42 'filter_helpers.h',
41 'media_stream_client.h', 43 'media_stream_client.h',
42 'preload.h', 44 'preload.h',
43 'skcanvas_video_renderer.cc', 45 'skcanvas_video_renderer.cc',
44 'skcanvas_video_renderer.h', 46 'skcanvas_video_renderer.h',
45 'webmediaplayer_delegate.h', 47 'webmediaplayer_delegate.h',
46 'webmediaplayer_impl.cc', 48 'webmediaplayer_impl.cc',
(...skipping 22 matching lines...) Expand all
69 ], 71 ],
70 }, { # OS != "android"' 72 }, { # OS != "android"'
71 'sources/': [ 73 'sources/': [
72 ['exclude', '^android/'], 74 ['exclude', '^android/'],
73 ], 75 ],
74 }], 76 }],
75 ], 77 ],
76 }, 78 },
77 ], 79 ],
78 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698