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

Side by Side Diff: media/media.gyp

Issue 436021: Implement method stubs for OpenMAX IL instead of relying on -lOmxCore. (Closed)
Patch Set: Windows fix Created 11 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
« no previous file with comments | « build/all.gyp ('k') | media/omx/omx_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 'tools/wav_ola_test.cc' 231 'tools/wav_ola_test.cc'
232 ], 232 ],
233 }, 233 },
234 { 234 {
235 'target_name': 'qt_faststart', 235 'target_name': 'qt_faststart',
236 'type': 'executable', 236 'type': 'executable',
237 'sources': [ 237 'sources': [
238 'tools/qt_faststart.c' 238 'tools/qt_faststart.c'
239 ], 239 ],
240 }, 240 },
241 {
242 'target_name': 'omx_test',
243 'type': 'executable',
244 'dependencies': [
245 '../base/base.gyp:base',
246 '../third_party/openmax/openmax.gyp:il',
247 ],
248 'sources': [
249 'omx/input_buffer.cc',
250 'omx/input_buffer.h',
251 'omx/omx_test.cc',
252 'omx/omx_video_decoder.cc',
253 'omx/omx_video_decoder.h',
254 ],
255 },
241 ], 256 ],
242 'conditions': [ 257 'conditions': [
243 ['OS=="win"', { 258 ['OS=="win"', {
244 'targets': [ 259 'targets': [
245 { 260 {
246 'target_name': 'media_player', 261 'target_name': 'media_player',
247 'type': 'executable', 262 'type': 'executable',
248 'dependencies': [ 263 'dependencies': [
249 'media', 264 'media',
250 '../base/base.gyp:base', 265 '../base/base.gyp:base',
(...skipping 27 matching lines...) Expand all
278 ], 293 ],
279 }], 294 }],
280 ], 295 ],
281 } 296 }
282 297
283 # Local Variables: 298 # Local Variables:
284 # tab-width:2 299 # tab-width:2
285 # indent-tabs-mode:nil 300 # indent-tabs-mode:nil
286 # End: 301 # End:
287 # vim: set expandtab tabstop=2 shiftwidth=2: 302 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | media/omx/omx_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698