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 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1029 'formats/mpeg/adts_constants.cc', | 1029 'formats/mpeg/adts_constants.cc', |
1030 'formats/mpeg/adts_constants.h', | 1030 'formats/mpeg/adts_constants.h', |
1031 'formats/mpeg/adts_stream_parser.cc', | 1031 'formats/mpeg/adts_stream_parser.cc', |
1032 'formats/mpeg/adts_stream_parser.h', | 1032 'formats/mpeg/adts_stream_parser.h', |
1033 'formats/mpeg/mpeg1_audio_stream_parser.cc', | 1033 'formats/mpeg/mpeg1_audio_stream_parser.cc', |
1034 'formats/mpeg/mpeg1_audio_stream_parser.h', | 1034 'formats/mpeg/mpeg1_audio_stream_parser.h', |
1035 'formats/mpeg/mpeg_audio_stream_parser_base.cc', | 1035 'formats/mpeg/mpeg_audio_stream_parser_base.cc', |
1036 'formats/mpeg/mpeg_audio_stream_parser_base.h', | 1036 'formats/mpeg/mpeg_audio_stream_parser_base.h', |
1037 ], | 1037 ], |
1038 }], | 1038 }], |
1039 ['target_arch=="ia32" or target_arch=="x64"', { | 1039 ['OS != "ios" and (target_arch=="ia32" or target_arch=="x64")', { |
1040 'dependencies': [ | 1040 'dependencies': [ |
1041 'media_asm', | 1041 'media_asm', |
1042 'media_sse2', | 1042 'media_sse2', |
1043 ], | 1043 ], |
1044 'sources': [ | 1044 'sources': [ |
1045 'base/simd/convert_yuv_to_rgb_x86.cc', | 1045 'base/simd/convert_yuv_to_rgb_x86.cc', |
1046 ], | 1046 ], |
1047 }], | 1047 }], |
1048 ['OS!="linux" and OS!="win"', { | 1048 ['OS!="linux" and OS!="win"', { |
1049 'sources!': [ | 1049 'sources!': [ |
(...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1939 '../build/isolate.gypi', | 1939 '../build/isolate.gypi', |
1940 ], | 1940 ], |
1941 'sources': [ | 1941 'sources': [ |
1942 'media_unittests.isolate', | 1942 'media_unittests.isolate', |
1943 ], | 1943 ], |
1944 }, | 1944 }, |
1945 ], | 1945 ], |
1946 }], | 1946 }], |
1947 ], | 1947 ], |
1948 } | 1948 } |
OLD | NEW |