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

Side by Side Diff: media/media_cdm.gypi

Issue 93243003: Add CDM FileIO tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: not to use base::MessageLoopProxy::current() Created 7 years 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
« no previous file with comments | « media/cdm/ppapi/clear_key_cdm.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'conditions': [ 7 'conditions': [
8 ['OS == "android"', { 8 ['OS == "android"', {
9 # Android doesn't use ffmpeg. 9 # Android doesn't use ffmpeg.
10 'use_ffmpeg%': 0, 10 'use_ffmpeg%': 0,
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 }] 74 }]
75 ], 75 ],
76 'defines': ['CDM_IMPLEMENTATION'], 76 'defines': ['CDM_IMPLEMENTATION'],
77 'dependencies': [ 77 'dependencies': [
78 'media', 78 'media',
79 # Include the following for media::AudioBus. 79 # Include the following for media::AudioBus.
80 'shared_memory_support', 80 'shared_memory_support',
81 '<(DEPTH)/base/base.gyp:base', 81 '<(DEPTH)/base/base.gyp:base',
82 ], 82 ],
83 'sources': [ 83 'sources': [
84 'cdm/ppapi/cdm_file_io_test.cc',
85 'cdm/ppapi/cdm_file_io_test.h',
84 'cdm/ppapi/cdm_video_decoder.cc', 86 'cdm/ppapi/cdm_video_decoder.cc',
85 'cdm/ppapi/cdm_video_decoder.h', 87 'cdm/ppapi/cdm_video_decoder.h',
86 'cdm/ppapi/clear_key_cdm.cc', 88 'cdm/ppapi/clear_key_cdm.cc',
87 'cdm/ppapi/clear_key_cdm.h', 89 'cdm/ppapi/clear_key_cdm.h',
88 'cdm/ppapi/clear_key_cdm_common.h', 90 'cdm/ppapi/clear_key_cdm_common.h',
89 ], 91 ],
90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 92 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
91 'msvs_disabled_warnings': [ 4267, ], 93 'msvs_disabled_warnings': [ 4267, ],
92 }, 94 },
93 { 95 {
(...skipping 14 matching lines...) Expand all
108 # Built by clearkeycdm. 110 # Built by clearkeycdm.
109 '<(PRODUCT_DIR)/libclearkeycdm.so', 111 '<(PRODUCT_DIR)/libclearkeycdm.so',
110 ], 112 ],
111 }], 113 }],
112 ], 114 ],
113 }, 115 },
114 ], 116 ],
115 }], 117 }],
116 ], 118 ],
117 } 119 }
OLDNEW
« no previous file with comments | « media/cdm/ppapi/clear_key_cdm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698