OLD | NEW |
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 Loading... |
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 }], | |
368 ['OS=="linux" or OS=="freebsd" or OS=="solaris"', { | 354 ['OS=="linux" or OS=="freebsd" or OS=="solaris"', { |
369 'link_settings': { | 355 'link_settings': { |
370 'libraries': [ | 356 'libraries': [ |
371 '-lasound', | 357 '-lasound', |
372 ], | 358 ], |
373 }, | 359 }, |
374 }], | 360 }], |
375 ['OS=="openbsd"', { | 361 ['OS=="openbsd"', { |
376 'sources/': [ ['exclude', '/alsa_' ], | 362 'sources/': [ ['exclude', '/alsa_' ], |
377 ['exclude', '/audio_manager_linux' ] ], | 363 ['exclude', '/audio_manager_linux' ] ], |
(...skipping 767 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1145 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 1131 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
1146 ], | 1132 ], |
1147 'sources': [ | 1133 'sources': [ |
1148 'tools/media_bench/media_bench.cc', | 1134 'tools/media_bench/media_bench.cc', |
1149 ], | 1135 ], |
1150 }, | 1136 }, |
1151 ], | 1137 ], |
1152 }] | 1138 }] |
1153 ], | 1139 ], |
1154 } | 1140 } |
OLD | NEW |