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