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

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: Comments. 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', {
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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 'filters/source_buffer_stream_unittest.cc', 646 'filters/source_buffer_stream_unittest.cc',
642 'filters/video_renderer_base_unittest.cc', 647 'filters/video_renderer_base_unittest.cc',
643 'video/capture/video_capture_device_unittest.cc', 648 'video/capture/video_capture_device_unittest.cc',
644 'webm/cluster_builder.cc', 649 'webm/cluster_builder.cc',
645 'webm/cluster_builder.h', 650 'webm/cluster_builder.h',
646 'webm/webm_cluster_parser_unittest.cc', 651 'webm/webm_cluster_parser_unittest.cc',
647 'webm/webm_content_encodings_client_unittest.cc', 652 'webm/webm_content_encodings_client_unittest.cc',
648 'webm/webm_parser_unittest.cc', 653 'webm/webm_parser_unittest.cc',
649 ], 654 ],
650 'conditions': [ 655 'conditions': [
656 ['arm_neon == 1', {
657 'defines': [
658 'USE_NEON'
659 ],
660 }],
651 ['OS != "ios"', { 661 ['OS != "ios"', {
652 'dependencies': [ 662 'dependencies': [
653 'shared_memory_support', 663 'shared_memory_support',
654 'yuv_convert', 664 'yuv_convert',
655 ], 665 ],
656 }], 666 }],
657 ['use_ffmpeg == 1', { 667 ['use_ffmpeg == 1', {
658 'dependencies': [ 668 'dependencies': [
659 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 669 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
660 ], 670 ],
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after
1275 'media', 1285 'media',
1276 ], 1286 ],
1277 'sources': [ 1287 'sources': [
1278 'tools/media_bench/media_bench.cc', 1288 'tools/media_bench/media_bench.cc',
1279 ], 1289 ],
1280 }, 1290 },
1281 ], 1291 ],
1282 }] 1292 }]
1283 ], 1293 ],
1284 } 1294 }
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