Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(280)

Side by Side Diff: media/media.gyp

Issue 1140553004: Fixed media build on iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/base/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « media/base/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698