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', | |
1417 'base/simd/convert_yuv_to_rgb_sse.asm', | 1416 'base/simd/convert_yuv_to_rgb_sse.asm', |
1418 'base/simd/convert_yuva_to_argb_mmx.asm', | 1417 'base/simd/convert_yuva_to_argb_mmx.asm', |
1419 'base/simd/empty_register_state_mmx.asm', | 1418 'base/simd/empty_register_state_mmx.asm', |
1420 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', | 1419 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', |
1421 'base/simd/linear_scale_yuv_to_rgb_sse.asm', | 1420 'base/simd/linear_scale_yuv_to_rgb_sse.asm', |
1422 'base/simd/scale_yuv_to_rgb_mmx.asm', | 1421 'base/simd/scale_yuv_to_rgb_mmx.asm', |
1423 'base/simd/scale_yuv_to_rgb_sse.asm', | 1422 'base/simd/scale_yuv_to_rgb_sse.asm', |
1424 ], | 1423 ], |
1425 'conditions': [ | 1424 'conditions': [ |
1426 ['component=="shared_library"', { | 1425 ['component=="shared_library"', { |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1745 ], | 1744 ], |
1746 }], | 1745 }], |
1747 ], | 1746 ], |
1748 }], | 1747 }], |
1749 ], | 1748 ], |
1750 }, | 1749 }, |
1751 ], | 1750 ], |
1752 }], | 1751 }], |
1753 ], | 1752 ], |
1754 } | 1753 } |
OLD | NEW |