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

Side by Side Diff: media/media.gyp

Issue 10960023: Add ARM NEON intrinsic optimizations for SincResampler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
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 PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 # Override to dynamically link the cras (ChromeOS audio) library. 10 # Override to dynamically link the cras (ChromeOS audio) library.
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 'webm/webm_stream_parser.h', 320 'webm/webm_stream_parser.h',
321 'webm/webm_tracks_parser.cc', 321 'webm/webm_tracks_parser.cc',
322 'webm/webm_tracks_parser.h', 322 'webm/webm_tracks_parser.h',
323 ], 323 ],
324 'direct_dependent_settings': { 324 'direct_dependent_settings': {
325 'include_dirs': [ 325 'include_dirs': [
326 '..', 326 '..',
327 ], 327 ],
328 }, 328 },
329 'conditions': [ 329 'conditions': [
330 ['arm_neon == 1', {
Ami GONE FROM CHROMIUM 2012/09/21 04:41:41 You need this same block in the media_unittests ta
DaleCurtis 2012/09/24 19:54:37 Done.
331 'defines': [
332 'USE_NEON'
333 ],
334 }],
330 ['OS != "ios"', { 335 ['OS != "ios"', {
331 'dependencies': [ 336 'dependencies': [
332 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 337 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
333 'shared_memory_support', 338 'shared_memory_support',
334 'yuv_convert', 339 'yuv_convert',
335 ], 340 ],
336 }], 341 }],
337 ['use_ffmpeg == 1', { 342 ['use_ffmpeg == 1', {
338 'dependencies': [ 343 'dependencies': [
339 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 344 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
(...skipping 935 matching lines...) Expand 10 before | Expand all | Expand 10 after
1275 'media', 1280 'media',
1276 ], 1281 ],
1277 'sources': [ 1282 'sources': [
1278 'tools/media_bench/media_bench.cc', 1283 'tools/media_bench/media_bench.cc',
1279 ], 1284 ],
1280 }, 1285 },
1281 ], 1286 ],
1282 }] 1287 }]
1283 ], 1288 ],
1284 } 1289 }
OLDNEW
« media/base/sinc_resampler_unittest.cc ('K') | « media/base/sinc_resampler_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698