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. |
11 'use_cras%': 0, | 11 'use_cras%': 0, |
12 'conditions': [ | 12 'conditions': [ |
13 ['OS == "android" or OS == "ios"', { | 13 ['OS == "android" or OS == "ios"', { |
14 # Android and iOS don't use ffmpeg. | 14 # Android and iOS don't use ffmpeg. |
15 'use_ffmpeg%': 0, | 15 'use_ffmpeg%': 0, |
16 }, { # 'OS != "android" and OS != "ios"' | 16 }, { # 'OS != "android" and OS != "ios"' |
17 'use_ffmpeg%': 1, | 17 'use_ffmpeg%': 1, |
18 }], | 18 }], |
19 ], | 19 ], |
20 }, | 20 }, |
21 'targets': [ | 21 'targets': [ |
22 { | 22 { |
23 'target_name': 'media', | 23 'target_name': 'media', |
24 'type': '<(component)', | 24 'type': '<(component)', |
25 'dependencies': [ | 25 'dependencies': [ |
26 '../base/base.gyp:base', | 26 '../base/base.gyp:base', |
27 '../build/temp_gyp/googleurl.gyp:googleurl', | 27 '../build/temp_gyp/googleurl.gyp:googleurl', |
28 '../crypto/crypto.gyp:crypto', | 28 '../crypto/crypto.gyp:crypto', |
29 '../skia/skia.gyp:skia', | 29 '../skia/skia.gyp:skia', |
| 30 '../third_party/libvpx/libvpx.gyp:libvpx', |
30 '../third_party/opus/opus.gyp:opus', | 31 '../third_party/opus/opus.gyp:opus', |
31 '../ui/ui.gyp:ui', | 32 '../ui/ui.gyp:ui', |
32 ], | 33 ], |
33 'defines': [ | 34 'defines': [ |
34 'MEDIA_IMPLEMENTATION', | 35 'MEDIA_IMPLEMENTATION', |
35 ], | 36 ], |
36 'include_dirs': [ | 37 'include_dirs': [ |
37 '..', | 38 '..', |
38 ], | 39 ], |
39 'sources': [ | 40 'sources': [ |
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 'filters/opus_audio_decoder.cc', | 302 'filters/opus_audio_decoder.cc', |
302 'filters/opus_audio_decoder.h', | 303 'filters/opus_audio_decoder.h', |
303 'filters/skcanvas_video_renderer.cc', | 304 'filters/skcanvas_video_renderer.cc', |
304 'filters/skcanvas_video_renderer.h', | 305 'filters/skcanvas_video_renderer.h', |
305 'filters/source_buffer_stream.cc', | 306 'filters/source_buffer_stream.cc', |
306 'filters/source_buffer_stream.h', | 307 'filters/source_buffer_stream.h', |
307 'filters/video_frame_generator.cc', | 308 'filters/video_frame_generator.cc', |
308 'filters/video_frame_generator.h', | 309 'filters/video_frame_generator.h', |
309 'filters/video_renderer_base.cc', | 310 'filters/video_renderer_base.cc', |
310 'filters/video_renderer_base.h', | 311 'filters/video_renderer_base.h', |
| 312 'filters/vpx_video_decoder.cc', |
| 313 'filters/vpx_video_decoder.h', |
311 'video/capture/fake_video_capture_device.cc', | 314 'video/capture/fake_video_capture_device.cc', |
312 'video/capture/fake_video_capture_device.h', | 315 'video/capture/fake_video_capture_device.h', |
313 'video/capture/linux/video_capture_device_linux.cc', | 316 'video/capture/linux/video_capture_device_linux.cc', |
314 'video/capture/linux/video_capture_device_linux.h', | 317 'video/capture/linux/video_capture_device_linux.h', |
315 'video/capture/mac/video_capture_device_mac.h', | 318 'video/capture/mac/video_capture_device_mac.h', |
316 'video/capture/mac/video_capture_device_mac.mm', | 319 'video/capture/mac/video_capture_device_mac.mm', |
317 'video/capture/mac/video_capture_device_qtkit_mac.h', | 320 'video/capture/mac/video_capture_device_qtkit_mac.h', |
318 'video/capture/mac/video_capture_device_qtkit_mac.mm', | 321 'video/capture/mac/video_capture_device_qtkit_mac.mm', |
319 'video/capture/video_capture.h', | 322 'video/capture/video_capture.h', |
320 'video/capture/video_capture_device.h', | 323 'video/capture/video_capture_device.h', |
(...skipping 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1358 'media', | 1361 'media', |
1359 ], | 1362 ], |
1360 'sources': [ | 1363 'sources': [ |
1361 'tools/media_bench/media_bench.cc', | 1364 'tools/media_bench/media_bench.cc', |
1362 ], | 1365 ], |
1363 }, | 1366 }, |
1364 ], | 1367 ], |
1365 }] | 1368 }] |
1366 ], | 1369 ], |
1367 } | 1370 } |
OLD | NEW |