| 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 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1185 'media_test_support', | 1185 'media_test_support', |
| 1186 'shared_memory_support', | 1186 'shared_memory_support', |
| 1187 ], | 1187 ], |
| 1188 'sources': [ | 1188 'sources': [ |
| 1189 'base/audio_bus_perftest.cc', | 1189 'base/audio_bus_perftest.cc', |
| 1190 'base/audio_converter_perftest.cc', | 1190 'base/audio_converter_perftest.cc', |
| 1191 'base/demuxer_perftest.cc', | 1191 'base/demuxer_perftest.cc', |
| 1192 'base/run_all_perftests.cc', | 1192 'base/run_all_perftests.cc', |
| 1193 'base/sinc_resampler_perftest.cc', | 1193 'base/sinc_resampler_perftest.cc', |
| 1194 'base/vector_math_perftest.cc', | 1194 'base/vector_math_perftest.cc', |
| 1195 'base/yuv_convert_perftest.cc', | |
| 1196 'filters/pipeline_integration_perftest.cc', | 1195 'filters/pipeline_integration_perftest.cc', |
| 1197 'filters/pipeline_integration_test_base.cc', | 1196 'filters/pipeline_integration_test_base.cc', |
| 1198 ], | 1197 ], |
| 1199 'conditions': [ | 1198 'conditions': [ |
| 1200 ['arm_neon==1', { | 1199 ['arm_neon==1', { |
| 1201 'defines': [ | 1200 'defines': [ |
| 1202 'USE_NEON' | 1201 'USE_NEON' |
| 1203 ], | 1202 ], |
| 1204 }], | 1203 }], |
| 1205 ['OS=="android"', { | 1204 ['OS=="android"', { |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1703 ], | 1702 ], |
| 1704 }], | 1703 }], |
| 1705 ], | 1704 ], |
| 1706 }], | 1705 }], |
| 1707 ], | 1706 ], |
| 1708 }, | 1707 }, |
| 1709 ], | 1708 ], |
| 1710 }], | 1709 }], |
| 1711 ], | 1710 ], |
| 1712 } | 1711 } |
| OLD | NEW |