| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 '../third_party/opus/opus.gyp:opus', | 52 '../third_party/opus/opus.gyp:opus', |
| 53 '../ui/ui.gyp:ui', | 53 '../ui/ui.gyp:ui', |
| 54 ], | 54 ], |
| 55 'defines': [ | 55 'defines': [ |
| 56 'MEDIA_IMPLEMENTATION', | 56 'MEDIA_IMPLEMENTATION', |
| 57 ], | 57 ], |
| 58 'include_dirs': [ | 58 'include_dirs': [ |
| 59 '..', | 59 '..', |
| 60 ], | 60 ], |
| 61 'sources': [ | 61 'sources': [ |
| 62 'audio/agc_audio_stream.h', |
| 62 'audio/android/audio_manager_android.cc', | 63 'audio/android/audio_manager_android.cc', |
| 63 'audio/android/audio_manager_android.h', | 64 'audio/android/audio_manager_android.h', |
| 64 'audio/android/opensles_input.cc', | 65 'audio/android/opensles_input.cc', |
| 65 'audio/android/opensles_input.h', | 66 'audio/android/opensles_input.h', |
| 66 'audio/android/opensles_output.cc', | 67 'audio/android/opensles_output.cc', |
| 67 'audio/android/opensles_output.h', | 68 'audio/android/opensles_output.h', |
| 68 'audio/async_socket_io_handler.h', | 69 'audio/async_socket_io_handler.h', |
| 69 'audio/async_socket_io_handler_posix.cc', | 70 'audio/async_socket_io_handler_posix.cc', |
| 70 'audio/async_socket_io_handler_win.cc', | 71 'audio/async_socket_io_handler_win.cc', |
| 71 'audio/audio_buffers_state.cc', | 72 'audio/audio_buffers_state.cc', |
| 72 'audio/audio_buffers_state.h', | 73 'audio/audio_buffers_state.h', |
| 73 'audio/audio_device_name.cc', | 74 'audio/audio_device_name.cc', |
| 74 'audio/audio_device_name.h', | 75 'audio/audio_device_name.h', |
| 75 'audio/audio_device_thread.cc', | 76 'audio/audio_device_thread.cc', |
| 76 'audio/audio_device_thread.h', | 77 'audio/audio_device_thread.h', |
| 77 'audio/audio_input_controller.cc', | 78 'audio/audio_input_controller.cc', |
| 78 'audio/audio_input_controller.h', | 79 'audio/audio_input_controller.h', |
| 79 'audio/audio_input_device.cc', | 80 'audio/audio_input_device.cc', |
| 80 'audio/audio_input_device.h', | 81 'audio/audio_input_device.h', |
| 81 'audio/audio_input_ipc.cc', | 82 'audio/audio_input_ipc.cc', |
| 82 'audio/audio_input_ipc.h', | 83 'audio/audio_input_ipc.h', |
| 83 'audio/audio_input_stream_impl.cc', | |
| 84 'audio/audio_input_stream_impl.h', | |
| 85 'audio/audio_io.h', | 84 'audio/audio_io.h', |
| 86 'audio/audio_manager.cc', | 85 'audio/audio_manager.cc', |
| 87 'audio/audio_manager.h', | 86 'audio/audio_manager.h', |
| 88 'audio/audio_manager_base.cc', | 87 'audio/audio_manager_base.cc', |
| 89 'audio/audio_manager_base.h', | 88 'audio/audio_manager_base.h', |
| 90 'audio/audio_output_controller.cc', | 89 'audio/audio_output_controller.cc', |
| 91 'audio/audio_output_controller.h', | 90 'audio/audio_output_controller.h', |
| 92 'audio/audio_output_device.cc', | 91 'audio/audio_output_device.cc', |
| 93 'audio/audio_output_device.h', | 92 'audio/audio_output_device.h', |
| 94 'audio/audio_output_dispatcher.cc', | 93 'audio/audio_output_dispatcher.cc', |
| (...skipping 1602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1697 'sources': [ | 1696 'sources': [ |
| 1698 'tools/media_bench/media_bench.cc', | 1697 'tools/media_bench/media_bench.cc', |
| 1699 ], | 1698 ], |
| 1700 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1699 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 1701 'msvs_disabled_warnings': [ 4267, ], | 1700 'msvs_disabled_warnings': [ 4267, ], |
| 1702 }, | 1701 }, |
| 1703 ], | 1702 ], |
| 1704 }], | 1703 }], |
| 1705 ], | 1704 ], |
| 1706 } | 1705 } |
| OLD | NEW |