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

Side by Side Diff: media/media.gyp

Issue 23454006: Implement experimental MP3 support for Media Source API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added Icecast test. Created 7 years, 3 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
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 cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 23 matching lines...) Expand all
34 }], 34 }],
35 ], 35 ],
36 }, 36 },
37 'targets': [ 37 'targets': [
38 { 38 {
39 'target_name': 'media', 39 'target_name': 'media',
40 'type': '<(component)', 40 'type': '<(component)',
41 'dependencies': [ 41 'dependencies': [
42 '../base/base.gyp:base', 42 '../base/base.gyp:base',
43 '../crypto/crypto.gyp:crypto', 43 '../crypto/crypto.gyp:crypto',
44 '../net/net.gyp:net',
44 '../skia/skia.gyp:skia', 45 '../skia/skia.gyp:skia',
45 '../third_party/opus/opus.gyp:opus', 46 '../third_party/opus/opus.gyp:opus',
46 '../ui/ui.gyp:ui', 47 '../ui/ui.gyp:ui',
47 '../url/url.gyp:url_lib', 48 '../url/url.gyp:url_lib',
48 ], 49 ],
49 'defines': [ 50 'defines': [
50 'MEDIA_IMPLEMENTATION', 51 'MEDIA_IMPLEMENTATION',
51 ], 52 ],
52 'include_dirs': [ 53 'include_dirs': [
53 '..', 54 '..',
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 'filters/vpx_video_decoder.cc', 376 'filters/vpx_video_decoder.cc',
376 'filters/vpx_video_decoder.h', 377 'filters/vpx_video_decoder.h',
377 'filters/wsola_internals.cc', 378 'filters/wsola_internals.cc',
378 'filters/wsola_internals.h', 379 'filters/wsola_internals.h',
379 'midi/midi_manager.cc', 380 'midi/midi_manager.cc',
380 'midi/midi_manager.h', 381 'midi/midi_manager.h',
381 'midi/midi_manager_mac.cc', 382 'midi/midi_manager_mac.cc',
382 'midi/midi_manager_mac.h', 383 'midi/midi_manager_mac.h',
383 'midi/midi_port_info.cc', 384 'midi/midi_port_info.cc',
384 'midi/midi_port_info.h', 385 'midi/midi_port_info.h',
386 'mp3/mp3_stream_parser.cc',
387 'mp3/mp3_stream_parser.h',
385 'video/capture/android/video_capture_device_android.cc', 388 'video/capture/android/video_capture_device_android.cc',
386 'video/capture/android/video_capture_device_android.h', 389 'video/capture/android/video_capture_device_android.h',
387 'video/capture/fake_video_capture_device.cc', 390 'video/capture/fake_video_capture_device.cc',
388 'video/capture/fake_video_capture_device.h', 391 'video/capture/fake_video_capture_device.h',
389 'video/capture/linux/video_capture_device_linux.cc', 392 'video/capture/linux/video_capture_device_linux.cc',
390 'video/capture/linux/video_capture_device_linux.h', 393 'video/capture/linux/video_capture_device_linux.h',
391 'video/capture/mac/video_capture_device_mac.h', 394 'video/capture/mac/video_capture_device_mac.h',
392 'video/capture/mac/video_capture_device_mac.mm', 395 'video/capture/mac/video_capture_device_mac.mm',
393 'video/capture/mac/video_capture_device_qtkit_mac.h', 396 'video/capture/mac/video_capture_device_qtkit_mac.h',
394 'video/capture/mac/video_capture_device_qtkit_mac.mm', 397 'video/capture/mac/video_capture_device_qtkit_mac.mm',
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after
1581 ], 1584 ],
1582 }], 1585 }],
1583 ], 1586 ],
1584 }], 1587 }],
1585 ], 1588 ],
1586 }, 1589 },
1587 ], 1590 ],
1588 }], 1591 }],
1589 ], 1592 ],
1590 } 1593 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698