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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 'base/demuxer_stream.cc', | 256 'base/demuxer_stream.cc', |
257 'base/demuxer_stream.h', | 257 'base/demuxer_stream.h', |
258 'base/djb2.cc', | 258 'base/djb2.cc', |
259 'base/djb2.h', | 259 'base/djb2.h', |
260 'base/encoded_bitstream_buffer.cc', | 260 'base/encoded_bitstream_buffer.cc', |
261 'base/encoded_bitstream_buffer.h', | 261 'base/encoded_bitstream_buffer.h', |
262 'base/filter_collection.cc', | 262 'base/filter_collection.cc', |
263 'base/filter_collection.h', | 263 'base/filter_collection.h', |
264 'base/media.cc', | 264 'base/media.cc', |
265 'base/media.h', | 265 'base/media.h', |
| 266 'base/media_file_checker.cc', |
| 267 'base/media_file_checker.h', |
266 'base/media_keys.cc', | 268 'base/media_keys.cc', |
267 'base/media_keys.h', | 269 'base/media_keys.h', |
268 'base/media_log.cc', | 270 'base/media_log.cc', |
269 'base/media_log.h', | 271 'base/media_log.h', |
270 'base/media_log_event.h', | 272 'base/media_log_event.h', |
271 'base/media_posix.cc', | 273 'base/media_posix.cc', |
272 'base/media_switches.cc', | 274 'base/media_switches.cc', |
273 'base/media_switches.h', | 275 'base/media_switches.h', |
274 'base/media_win.cc', | 276 'base/media_win.cc', |
275 'base/multi_channel_resampler.cc', | 277 'base/multi_channel_resampler.cc', |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 }], | 465 }], |
464 ['media_use_ffmpeg==1', { | 466 ['media_use_ffmpeg==1', { |
465 'dependencies': [ | 467 'dependencies': [ |
466 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 468 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
467 ], | 469 ], |
468 }, { # media_use_ffmpeg==0 | 470 }, { # media_use_ffmpeg==0 |
469 # Exclude the sources that depend on ffmpeg. | 471 # Exclude the sources that depend on ffmpeg. |
470 'sources!': [ | 472 'sources!': [ |
471 'base/container_names.cc', | 473 'base/container_names.cc', |
472 'base/container_names.h', | 474 'base/container_names.h', |
| 475 'base/media_file_checker.cc', |
| 476 'base/media_file_checker.h', |
473 'base/media_posix.cc', | 477 'base/media_posix.cc', |
474 'ffmpeg/ffmpeg_common.cc', | 478 'ffmpeg/ffmpeg_common.cc', |
475 'ffmpeg/ffmpeg_common.h', | 479 'ffmpeg/ffmpeg_common.h', |
476 'filters/audio_file_reader.cc', | 480 'filters/audio_file_reader.cc', |
477 'filters/audio_file_reader.h', | 481 'filters/audio_file_reader.h', |
478 'filters/blocking_url_protocol.cc', | 482 'filters/blocking_url_protocol.cc', |
479 'filters/blocking_url_protocol.h', | 483 'filters/blocking_url_protocol.h', |
480 'filters/ffmpeg_audio_decoder.cc', | 484 'filters/ffmpeg_audio_decoder.cc', |
481 'filters/ffmpeg_audio_decoder.h', | 485 'filters/ffmpeg_audio_decoder.h', |
482 'filters/ffmpeg_demuxer.cc', | 486 'filters/ffmpeg_demuxer.cc', |
(...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1634 'sources': [ | 1638 'sources': [ |
1635 'tools/media_bench/media_bench.cc', | 1639 'tools/media_bench/media_bench.cc', |
1636 ], | 1640 ], |
1637 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1641 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
1638 'msvs_disabled_warnings': [ 4267, ], | 1642 'msvs_disabled_warnings': [ 4267, ], |
1639 }, | 1643 }, |
1640 ], | 1644 ], |
1641 }], | 1645 }], |
1642 ], | 1646 ], |
1643 } | 1647 } |
OLD | NEW |