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 }], |
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 Loading... |
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 } |
OLD | NEW |