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

Side by Side Diff: media/media.gyp

Issue 10784037: [cros] Implement WebM encoder/muxer for animated avatar capture. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes Created 8 years, 4 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
« no previous file with comments | « no previous file | media/webm/chromeos/DEPS » ('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) 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 PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 # Override to dynamically link the cras (ChromeOS audio) library. 10 # Override to dynamically link the cras (ChromeOS audio) library.
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 ], 344 ],
345 'sources':[ 345 'sources':[
346 'audio/android/audio_track_output_stub_android.cc', 346 'audio/android/audio_track_output_stub_android.cc',
347 ], 347 ],
348 'link_settings': { 348 'link_settings': {
349 'libraries': [ 349 'libraries': [
350 '-lOpenSLES', 350 '-lOpenSLES',
351 ], 351 ],
352 }, 352 },
353 }], 353 }],
354 # A simple WebM encoder for animated avatars on ChromeOS.
355 ['chromeos==1', {
356 'dependencies': [
357 '../skia/skia.gyp:skia',
358 '../third_party/libvpx/libvpx.gyp:libvpx',
359 '../third_party/libyuv/libyuv.gyp:libyuv',
360 ],
361 'sources': [
362 'webm/chromeos/ebml_writer.cc',
363 'webm/chromeos/ebml_writer.h',
364 'webm/chromeos/webm_encoder.cc',
365 'webm/chromeos/webm_encoder.h',
366 ],
367 }],
354 ['OS=="linux" or OS=="freebsd" or OS=="solaris"', { 368 ['OS=="linux" or OS=="freebsd" or OS=="solaris"', {
355 'link_settings': { 369 'link_settings': {
356 'libraries': [ 370 'libraries': [
357 '-lasound', 371 '-lasound',
358 ], 372 ],
359 }, 373 },
360 }], 374 }],
361 ['OS=="openbsd"', { 375 ['OS=="openbsd"', {
362 'sources/': [ ['exclude', '/alsa_' ], 376 'sources/': [ ['exclude', '/alsa_' ],
363 ['exclude', '/audio_manager_linux' ] ], 377 ['exclude', '/audio_manager_linux' ] ],
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after
1131 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 1145 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
1132 ], 1146 ],
1133 'sources': [ 1147 'sources': [
1134 'tools/media_bench/media_bench.cc', 1148 'tools/media_bench/media_bench.cc',
1135 ], 1149 ],
1136 }, 1150 },
1137 ], 1151 ],
1138 }] 1152 }]
1139 ], 1153 ],
1140 } 1154 }
OLDNEW
« no previous file with comments | « no previous file | media/webm/chromeos/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698