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 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 'base/sinc_resampler.cc', | 300 'base/sinc_resampler.cc', |
301 'base/sinc_resampler.h', | 301 'base/sinc_resampler.h', |
302 'base/stream_parser.cc', | 302 'base/stream_parser.cc', |
303 'base/stream_parser.h', | 303 'base/stream_parser.h', |
304 'base/stream_parser_buffer.cc', | 304 'base/stream_parser_buffer.cc', |
305 'base/stream_parser_buffer.h', | 305 'base/stream_parser_buffer.h', |
306 'base/text_track.h', | 306 'base/text_track.h', |
307 'base/user_input_monitor.cc', | 307 'base/user_input_monitor.cc', |
308 'base/user_input_monitor.h', | 308 'base/user_input_monitor.h', |
309 'base/user_input_monitor_linux.cc', | 309 'base/user_input_monitor_linux.cc', |
310 'base/user_input_monitor_mac.mm', | 310 'base/user_input_monitor_mac.cc', |
311 'base/user_input_monitor_win.cc', | 311 'base/user_input_monitor_win.cc', |
312 'base/video_decoder.cc', | 312 'base/video_decoder.cc', |
313 'base/video_decoder.h', | 313 'base/video_decoder.h', |
314 'base/video_decoder_config.cc', | 314 'base/video_decoder_config.cc', |
315 'base/video_decoder_config.h', | 315 'base/video_decoder_config.h', |
316 'base/video_frame.cc', | 316 'base/video_frame.cc', |
317 'base/video_frame.h', | 317 'base/video_frame.h', |
318 'base/video_renderer.cc', | 318 'base/video_renderer.cc', |
319 'base/video_renderer.h', | 319 'base/video_renderer.h', |
320 'base/video_util.cc', | 320 'base/video_util.cc', |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
780 }], | 780 }], |
781 ['os_posix==1', { | 781 ['os_posix==1', { |
782 'sources!': [ | 782 'sources!': [ |
783 'video/capture/video_capture_device_dummy.cc', | 783 'video/capture/video_capture_device_dummy.cc', |
784 'video/capture/video_capture_device_dummy.h', | 784 'video/capture/video_capture_device_dummy.h', |
785 ], | 785 ], |
786 }], | 786 }], |
787 ['OS=="mac"', { | 787 ['OS=="mac"', { |
788 'link_settings': { | 788 'link_settings': { |
789 'libraries': [ | 789 'libraries': [ |
| 790 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framewor
k', |
790 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', | 791 '$(SDKROOT)/System/Library/Frameworks/AudioToolbox.framework', |
791 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', | 792 '$(SDKROOT)/System/Library/Frameworks/AudioUnit.framework', |
792 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', | 793 '$(SDKROOT)/System/Library/Frameworks/CoreAudio.framework', |
793 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework', | 794 '$(SDKROOT)/System/Library/Frameworks/CoreMIDI.framework', |
794 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', | 795 '$(SDKROOT)/System/Library/Frameworks/CoreVideo.framework', |
795 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', | 796 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
796 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework', | 797 '$(SDKROOT)/System/Library/Frameworks/QTKit.framework', |
797 ], | 798 ], |
798 }, | 799 }, |
799 }], | 800 }], |
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1676 'sources': [ | 1677 'sources': [ |
1677 'tools/media_bench/media_bench.cc', | 1678 'tools/media_bench/media_bench.cc', |
1678 ], | 1679 ], |
1679 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1680 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
1680 'msvs_disabled_warnings': [ 4267, ], | 1681 'msvs_disabled_warnings': [ 4267, ], |
1681 }, | 1682 }, |
1682 ], | 1683 ], |
1683 }], | 1684 }], |
1684 ], | 1685 ], |
1685 } | 1686 } |
OLD | NEW |