| 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 { | 452 { |
| 453 'target_name': 'yuv_convert', | 453 'target_name': 'yuv_convert', |
| 454 'type': 'static_library', | 454 'type': 'static_library', |
| 455 'include_dirs': [ | 455 'include_dirs': [ |
| 456 '..', | 456 '..', |
| 457 ], | 457 ], |
| 458 'dependencies': [ | 458 'dependencies': [ |
| 459 'cpu_features', | 459 'cpu_features', |
| 460 ], | 460 ], |
| 461 'conditions': [ | 461 'conditions': [ |
| 462 ['order_profiling != 0', { |
| 463 'target_conditions' : [ |
| 464 ['_toolset=="target"', { |
| 465 'cflags!': [ '-finstrument-functions' ], |
| 466 }], |
| 467 ], |
| 468 }], |
| 462 [ 'target_arch == "ia32" or target_arch == "x64"', { | 469 [ 'target_arch == "ia32" or target_arch == "x64"', { |
| 463 'dependencies': [ | 470 'dependencies': [ |
| 464 'yuv_convert_simd_x86', | 471 'yuv_convert_simd_x86', |
| 465 ], | 472 ], |
| 466 }], | 473 }], |
| 467 [ 'target_arch == "arm"', { | 474 [ 'target_arch == "arm"', { |
| 468 'dependencies': [ | 475 'dependencies': [ |
| 469 'yuv_convert_simd_arm', | 476 'yuv_convert_simd_arm', |
| 470 ], | 477 ], |
| 471 }], | 478 }], |
| (...skipping 27 matching lines...) Expand all Loading... |
| 499 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', | 506 'base/simd/linear_scale_yuv_to_rgb_mmx.asm', |
| 500 'base/simd/linear_scale_yuv_to_rgb_mmx.inc', | 507 'base/simd/linear_scale_yuv_to_rgb_mmx.inc', |
| 501 'base/simd/linear_scale_yuv_to_rgb_sse.asm', | 508 'base/simd/linear_scale_yuv_to_rgb_sse.asm', |
| 502 'base/simd/scale_yuv_to_rgb_mmx.asm', | 509 'base/simd/scale_yuv_to_rgb_mmx.asm', |
| 503 'base/simd/scale_yuv_to_rgb_mmx.inc', | 510 'base/simd/scale_yuv_to_rgb_mmx.inc', |
| 504 'base/simd/scale_yuv_to_rgb_sse.asm', | 511 'base/simd/scale_yuv_to_rgb_sse.asm', |
| 505 'base/simd/yuv_to_rgb_table.cc', | 512 'base/simd/yuv_to_rgb_table.cc', |
| 506 'base/simd/yuv_to_rgb_table.h', | 513 'base/simd/yuv_to_rgb_table.h', |
| 507 ], | 514 ], |
| 508 'conditions': [ | 515 'conditions': [ |
| 516 ['order_profiling != 0', { |
| 517 'target_conditions' : [ |
| 518 ['_toolset=="target"', { |
| 519 'cflags!': [ '-finstrument-functions' ], |
| 520 }], |
| 521 ], |
| 522 }], |
| 509 [ 'target_arch == "x64"', { | 523 [ 'target_arch == "x64"', { |
| 510 # Source files optimized for X64 systems. | 524 # Source files optimized for X64 systems. |
| 511 'sources': [ | 525 'sources': [ |
| 512 'base/simd/linear_scale_yuv_to_rgb_mmx_x64.asm', | 526 'base/simd/linear_scale_yuv_to_rgb_mmx_x64.asm', |
| 513 'base/simd/scale_yuv_to_rgb_sse2_x64.asm', | 527 'base/simd/scale_yuv_to_rgb_sse2_x64.asm', |
| 514 ], | 528 ], |
| 515 }], | 529 }], |
| 516 [ 'os_posix == 1 and OS != "mac" and OS != "android"', { | 530 [ 'os_posix == 1 and OS != "mac" and OS != "android"', { |
| 517 'cflags': [ | 531 'cflags': [ |
| 518 '-msse2', | 532 '-msse2', |
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 1016 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 1003 ], | 1017 ], |
| 1004 'sources': [ | 1018 'sources': [ |
| 1005 'tools/media_bench/media_bench.cc', | 1019 'tools/media_bench/media_bench.cc', |
| 1006 ], | 1020 ], |
| 1007 }, | 1021 }, |
| 1008 ], | 1022 ], |
| 1009 }] | 1023 }] |
| 1010 ], | 1024 ], |
| 1011 } | 1025 } |
| OLD | NEW |