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 1399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1410 }, | 1410 }, |
1411 ], | 1411 ], |
1412 'conditions': [ | 1412 'conditions': [ |
1413 ['target_arch!="arm"', { | 1413 ['target_arch!="arm"', { |
1414 'targets': [ | 1414 'targets': [ |
1415 { | 1415 { |
1416 'target_name': 'media_asm', | 1416 'target_name': 'media_asm', |
1417 'type': 'static_library', | 1417 'type': 'static_library', |
1418 'sources': [ | 1418 'sources': [ |
1419 'base/simd/convert_rgb_to_yuv_ssse3.asm', | 1419 'base/simd/convert_rgb_to_yuv_ssse3.asm', |
1420 'base/simd/convert_yuv_to_rgb_mmx.asm', | |
1421 'base/simd/convert_yuv_to_rgb_sse.asm', | 1420 'base/simd/convert_yuv_to_rgb_sse.asm', |
1422 'base/simd/convert_yuva_to_argb_mmx.asm', | 1421 'base/simd/convert_yuva_to_argb_mmx.asm', |
1423 'base/simd/empty_register_state_mmx.asm', | 1422 'base/simd/empty_register_state_mmx.asm', |
1424 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', | 1423 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', |
1425 'base/simd/linear_scale_yuv_to_rgb_sse.asm', | 1424 'base/simd/linear_scale_yuv_to_rgb_sse.asm', |
1426 'base/simd/scale_yuv_to_rgb_mmx.asm', | 1425 'base/simd/scale_yuv_to_rgb_mmx.asm', |
1427 'base/simd/scale_yuv_to_rgb_sse.asm', | 1426 'base/simd/scale_yuv_to_rgb_sse.asm', |
1428 ], | 1427 ], |
1429 'conditions': [ | 1428 'conditions': [ |
1430 ['component=="shared_library"', { | 1429 ['component=="shared_library"', { |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1747 ], | 1746 ], |
1748 }], | 1747 }], |
1749 ], | 1748 ], |
1750 }], | 1749 }], |
1751 ], | 1750 ], |
1752 }, | 1751 }, |
1753 ], | 1752 ], |
1754 }], | 1753 }], |
1755 ], | 1754 ], |
1756 } | 1755 } |
OLD | NEW |