| 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 28 matching lines...) Expand all Loading... |
| 39 'use_pulseaudio%': 0, | 39 'use_pulseaudio%': 0, |
| 40 }], | 40 }], |
| 41 ], | 41 ], |
| 42 }, | 42 }, |
| 43 'targets': [ | 43 'targets': [ |
| 44 { | 44 { |
| 45 'target_name': 'media', | 45 'target_name': 'media', |
| 46 'type': '<(component)', | 46 'type': '<(component)', |
| 47 'dependencies': [ | 47 'dependencies': [ |
| 48 '../base/base.gyp:base', | 48 '../base/base.gyp:base', |
| 49 '../build/temp_gyp/googleurl.gyp:googleurl', | |
| 50 '../crypto/crypto.gyp:crypto', | 49 '../crypto/crypto.gyp:crypto', |
| 51 '../skia/skia.gyp:skia', | 50 '../skia/skia.gyp:skia', |
| 52 '../third_party/opus/opus.gyp:opus', | 51 '../third_party/opus/opus.gyp:opus', |
| 53 '../ui/ui.gyp:ui', | 52 '../ui/ui.gyp:ui', |
| 53 '../url/url.gyp:url', |
| 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/android/audio_manager_android.cc', | 62 'audio/android/audio_manager_android.cc', |
| 63 'audio/android/audio_manager_android.h', | 63 'audio/android/audio_manager_android.h', |
| (...skipping 1660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1724 ], | 1724 ], |
| 1725 'sources': [ | 1725 'sources': [ |
| 1726 'base/simd/sinc_resampler_sse.cc', | 1726 'base/simd/sinc_resampler_sse.cc', |
| 1727 'base/simd/vector_math_sse.cc', | 1727 'base/simd/vector_math_sse.cc', |
| 1728 ], | 1728 ], |
| 1729 }, # end of target media_sse | 1729 }, # end of target media_sse |
| 1730 ], | 1730 ], |
| 1731 }], | 1731 }], |
| 1732 ], | 1732 ], |
| 1733 } | 1733 } |
| OLD | NEW |