| 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 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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 { | 466 { |
| 467 'target_name': 'yuv_convert', | 467 'target_name': 'yuv_convert', |
| 468 'type': 'static_library', | 468 'type': 'static_library', |
| 469 'include_dirs': [ | 469 'include_dirs': [ |
| 470 '..', | 470 '..', |
| 471 ], | 471 ], |
| 472 'dependencies': [ | 472 'dependencies': [ |
| 473 'cpu_features', | 473 'cpu_features', |
| 474 ], | 474 ], |
| 475 'conditions': [ | 475 'conditions': [ |
| 476 ['order_profiling != 0', { |
| 477 'target_conditions' : [ |
| 478 ['_toolset=="target"', { |
| 479 'cflags!': [ '-finstrument-functions' ], |
| 480 }], |
| 481 ], |
| 482 }], |
| 476 [ 'target_arch == "ia32" or target_arch == "x64"', { | 483 [ 'target_arch == "ia32" or target_arch == "x64"', { |
| 477 'dependencies': [ | 484 'dependencies': [ |
| 478 'yuv_convert_simd_x86', | 485 'yuv_convert_simd_x86', |
| 479 ], | 486 ], |
| 480 }], | 487 }], |
| 481 [ 'target_arch == "arm"', { | 488 [ 'target_arch == "arm"', { |
| 482 'dependencies': [ | 489 'dependencies': [ |
| 483 'yuv_convert_simd_arm', | 490 'yuv_convert_simd_arm', |
| 484 ], | 491 ], |
| 485 }], | 492 }], |
| (...skipping 27 matching lines...) Expand all Loading... |
| 513 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', | 520 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', |
| 514 'base/simd/linear_scale_yuv_to_rgb_mmx.inc', | 521 'base/simd/linear_scale_yuv_to_rgb_mmx.inc', |
| 515 'base/simd/linear_scale_yuv_to_rgb_sse.asm', | 522 'base/simd/linear_scale_yuv_to_rgb_sse.asm', |
| 516 'base/simd/scale_yuv_to_rgb_mmx.asm', | 523 'base/simd/scale_yuv_to_rgb_mmx.asm', |
| 517 'base/simd/scale_yuv_to_rgb_mmx.inc', | 524 'base/simd/scale_yuv_to_rgb_mmx.inc', |
| 518 'base/simd/scale_yuv_to_rgb_sse.asm', | 525 'base/simd/scale_yuv_to_rgb_sse.asm', |
| 519 'base/simd/yuv_to_rgb_table.cc', | 526 'base/simd/yuv_to_rgb_table.cc', |
| 520 'base/simd/yuv_to_rgb_table.h', | 527 'base/simd/yuv_to_rgb_table.h', |
| 521 ], | 528 ], |
| 522 'conditions': [ | 529 'conditions': [ |
| 530 ['order_profiling != 0', { |
| 531 'target_conditions' : [ |
| 532 ['_toolset=="target"', { |
| 533 'cflags!': [ '-finstrument-functions' ], |
| 534 }], |
| 535 ], |
| 536 }], |
| 523 [ 'target_arch == "x64"', { | 537 [ 'target_arch == "x64"', { |
| 524 # Source files optimized for X64 systems. | 538 # Source files optimized for X64 systems. |
| 525 'sources': [ | 539 'sources': [ |
| 526 'base/simd/linear_scale_yuv_to_rgb_mmx_x64.asm', | 540 'base/simd/linear_scale_yuv_to_rgb_mmx_x64.asm', |
| 527 'base/simd/scale_yuv_to_rgb_sse2_x64.asm', | 541 'base/simd/scale_yuv_to_rgb_sse2_x64.asm', |
| 528 ], | 542 ], |
| 529 }], | 543 }], |
| 530 [ 'os_posix == 1 and OS != "mac" and OS != "android"', { | 544 [ 'os_posix == 1 and OS != "mac" and OS != "android"', { |
| 531 'cflags': [ | 545 'cflags': [ |
| 532 '-msse2', | 546 '-msse2', |
| (...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1064 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 1078 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 1065 ], | 1079 ], |
| 1066 'sources': [ | 1080 'sources': [ |
| 1067 'tools/media_bench/media_bench.cc', | 1081 'tools/media_bench/media_bench.cc', |
| 1068 ], | 1082 ], |
| 1069 }, | 1083 }, |
| 1070 ], | 1084 ], |
| 1071 }] | 1085 }] |
| 1072 ], | 1086 ], |
| 1073 } | 1087 } |
| OLD | NEW |