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

Side by Side Diff: media/media.gyp

Issue 8770054: Tool to log the execution of Chrome. Initial add. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed review comments Created 8 years, 8 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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 }
OLDNEW
« build/common.gypi ('K') | « chrome/chrome_exe.gypi ('k') | skia/skia.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698