| 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 1625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1720 ], | 1719 ], |
| 1721 'sources': [ | 1720 'sources': [ |
| 1722 'base/simd/sinc_resampler_sse.cc', | 1721 'base/simd/sinc_resampler_sse.cc', |
| 1723 'base/simd/vector_math_sse.cc', | 1722 'base/simd/vector_math_sse.cc', |
| 1724 ], | 1723 ], |
| 1725 }, # end of target media_sse | 1724 }, # end of target media_sse |
| 1726 ], | 1725 ], |
| 1727 }], | 1726 }], |
| 1728 ], | 1727 ], |
| 1729 } | 1728 } |
| OLD | NEW |