OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 }, | 10 }, |
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 { | 390 { |
391 'target_name': 'yuv_convert', | 391 'target_name': 'yuv_convert', |
392 'type': 'static_library', | 392 'type': 'static_library', |
393 'include_dirs': [ | 393 'include_dirs': [ |
394 '..', | 394 '..', |
395 ], | 395 ], |
396 'dependencies': [ | 396 'dependencies': [ |
397 'cpu_features', | 397 'cpu_features', |
398 ], | 398 ], |
399 'conditions': [ | 399 'conditions': [ |
| 400 ['order_profiling != 0', { |
| 401 'target_conditions' : [ |
| 402 ['_toolset=="target"', { |
| 403 'cflags!': [ '-finstrument-functions' ], |
| 404 }], |
| 405 ], |
| 406 }], |
400 [ 'target_arch == "ia32" or target_arch == "x64"', { | 407 [ 'target_arch == "ia32" or target_arch == "x64"', { |
401 'dependencies': [ | 408 'dependencies': [ |
402 'yuv_convert_simd_x86', | 409 'yuv_convert_simd_x86', |
403 ], | 410 ], |
404 }], | 411 }], |
405 [ 'target_arch == "arm"', { | 412 [ 'target_arch == "arm"', { |
406 'dependencies': [ | 413 'dependencies': [ |
407 'yuv_convert_simd_arm', | 414 'yuv_convert_simd_arm', |
408 ], | 415 ], |
409 }], | 416 }], |
(...skipping 27 matching lines...) Expand all Loading... |
437 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', | 444 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', |
438 'base/simd/linear_scale_yuv_to_rgb_mmx.inc', | 445 'base/simd/linear_scale_yuv_to_rgb_mmx.inc', |
439 'base/simd/linear_scale_yuv_to_rgb_sse.asm', | 446 'base/simd/linear_scale_yuv_to_rgb_sse.asm', |
440 'base/simd/scale_yuv_to_rgb_mmx.asm', | 447 'base/simd/scale_yuv_to_rgb_mmx.asm', |
441 'base/simd/scale_yuv_to_rgb_mmx.inc', | 448 'base/simd/scale_yuv_to_rgb_mmx.inc', |
442 'base/simd/scale_yuv_to_rgb_sse.asm', | 449 'base/simd/scale_yuv_to_rgb_sse.asm', |
443 'base/simd/yuv_to_rgb_table.cc', | 450 'base/simd/yuv_to_rgb_table.cc', |
444 'base/simd/yuv_to_rgb_table.h', | 451 'base/simd/yuv_to_rgb_table.h', |
445 ], | 452 ], |
446 'conditions': [ | 453 'conditions': [ |
| 454 ['order_profiling != 0', { |
| 455 'target_conditions' : [ |
| 456 ['_toolset=="target"', { |
| 457 'cflags!': [ '-finstrument-functions' ], |
| 458 }], |
| 459 ], |
| 460 }], |
447 [ 'target_arch == "x64"', { | 461 [ 'target_arch == "x64"', { |
448 # Source files optimized for X64 systems. | 462 # Source files optimized for X64 systems. |
449 'sources': [ | 463 'sources': [ |
450 'base/simd/linear_scale_yuv_to_rgb_mmx_x64.asm', | 464 'base/simd/linear_scale_yuv_to_rgb_mmx_x64.asm', |
451 'base/simd/scale_yuv_to_rgb_sse2_x64.asm', | 465 'base/simd/scale_yuv_to_rgb_sse2_x64.asm', |
452 ], | 466 ], |
453 }], | 467 }], |
454 [ 'os_posix == 1 and OS != "mac"', { | 468 [ 'os_posix == 1 and OS != "mac"', { |
455 'cflags': [ | 469 'cflags': [ |
456 '-msse2', | 470 '-msse2', |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
888 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 902 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
889 ], | 903 ], |
890 'sources': [ | 904 'sources': [ |
891 'tools/media_bench/media_bench.cc', | 905 'tools/media_bench/media_bench.cc', |
892 ], | 906 ], |
893 }, | 907 }, |
894 ], | 908 ], |
895 }] | 909 }] |
896 ], | 910 ], |
897 } | 911 } |
OLD | NEW |