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. |
11 'use_cras%': 0, | 11 'use_cras%': 0, |
12 }, | 12 }, |
13 'target_defaults': { | |
14 # Disable narrowing-conversion-in-initialization-list warnings. | |
15 'cflags+': ['-Wno-narrowing'], | |
16 'cflags_cc+': ['-Wno-narrowing'], | |
Ami GONE FROM CHROMIUM
2012/06/06 21:34:09
I don't understand why you need this given the INT
Han
2012/06/06 22:18:23
Yup, right. Reverted this file.
| |
17 }, | |
13 'targets': [ | 18 'targets': [ |
14 { | 19 { |
15 'target_name': 'media', | 20 'target_name': 'media', |
16 'type': '<(component)', | 21 'type': '<(component)', |
17 'dependencies': [ | 22 'dependencies': [ |
18 'yuv_convert', | 23 'yuv_convert', |
19 '../base/base.gyp:base', | 24 '../base/base.gyp:base', |
20 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', | 25 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', |
21 '../build/temp_gyp/googleurl.gyp:googleurl', | 26 '../build/temp_gyp/googleurl.gyp:googleurl', |
22 '../crypto/crypto.gyp:crypto', | 27 '../crypto/crypto.gyp:crypto', |
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
610 'includes': [ | 615 'includes': [ |
611 '../third_party/yasm/yasm_compile.gypi', | 616 '../third_party/yasm/yasm_compile.gypi', |
612 ], | 617 ], |
613 }, | 618 }, |
614 { | 619 { |
615 'target_name': 'yuv_convert_simd_arm', | 620 'target_name': 'yuv_convert_simd_arm', |
616 'type': 'static_library', | 621 'type': 'static_library', |
617 'include_dirs': [ | 622 'include_dirs': [ |
618 '..', | 623 '..', |
619 ], | 624 ], |
620 'sources': [ | 625 'sources': [ |
Ami GONE FROM CHROMIUM
2012/06/06 21:34:09
nit: remove new space
Han
2012/06/06 22:18:23
Yup, right. Reverted this file.
| |
621 'base/simd/convert_rgb_to_yuv_c.cc', | 626 'base/simd/convert_rgb_to_yuv_c.cc', |
622 'base/simd/convert_rgb_to_yuv.h', | 627 'base/simd/convert_rgb_to_yuv.h', |
623 'base/simd/convert_yuv_to_rgb_c.cc', | 628 'base/simd/convert_yuv_to_rgb_c.cc', |
624 'base/simd/convert_yuv_to_rgb.h', | 629 'base/simd/convert_yuv_to_rgb.h', |
625 'base/simd/filter_yuv.h', | 630 'base/simd/filter_yuv.h', |
626 'base/simd/filter_yuv_c.cc', | 631 'base/simd/filter_yuv_c.cc', |
627 'base/simd/yuv_to_rgb_table.cc', | 632 'base/simd/yuv_to_rgb_table.cc', |
628 'base/simd/yuv_to_rgb_table.h', | 633 'base/simd/yuv_to_rgb_table.h', |
629 ], | 634 ], |
630 }, | 635 }, |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1082 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 1087 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
1083 ], | 1088 ], |
1084 'sources': [ | 1089 'sources': [ |
1085 'tools/media_bench/media_bench.cc', | 1090 'tools/media_bench/media_bench.cc', |
1086 ], | 1091 ], |
1087 }, | 1092 }, |
1088 ], | 1093 ], |
1089 }] | 1094 }] |
1090 ], | 1095 ], |
1091 } | 1096 } |
OLD | NEW |