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

Side by Side Diff: media/media.gyp

Issue 10824141: Remove VideoDecoder::natural_size() & added VideoFrame::natural_size(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 ], 840 ],
841 }, 841 },
842 { 842 {
843 'target_name': 'scaler_bench', 843 'target_name': 'scaler_bench',
844 'type': 'executable', 844 'type': 'executable',
845 'dependencies': [ 845 'dependencies': [
846 'media', 846 'media',
847 'yuv_convert', 847 'yuv_convert',
848 '../base/base.gyp:base', 848 '../base/base.gyp:base',
849 '../skia/skia.gyp:skia', 849 '../skia/skia.gyp:skia',
850 '../ui/ui.gyp:ui',
850 ], 851 ],
851 'sources': [ 852 'sources': [
852 'tools/scaler_bench/scaler_bench.cc', 853 'tools/scaler_bench/scaler_bench.cc',
853 ], 854 ],
854 }, 855 },
855 { 856 {
856 'target_name': 'qt_faststart', 857 'target_name': 'qt_faststart',
857 'type': 'executable', 858 'type': 'executable',
858 'sources': [ 859 'sources': [
859 'tools/qt_faststart/qt_faststart.c' 860 'tools/qt_faststart/qt_faststart.c'
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 ['OS == "win" or toolkit_uses_gtk == 1', { 914 ['OS == "win" or toolkit_uses_gtk == 1', {
914 'targets': [ 915 'targets': [
915 { 916 {
916 'target_name': 'shader_bench', 917 'target_name': 'shader_bench',
917 'type': 'executable', 918 'type': 'executable',
918 'dependencies': [ 919 'dependencies': [
919 'media', 920 'media',
920 'yuv_convert', 921 'yuv_convert',
921 '../base/base.gyp:base', 922 '../base/base.gyp:base',
922 '../ui/gl/gl.gyp:gl', 923 '../ui/gl/gl.gyp:gl',
924 '../ui/ui.gyp:ui',
923 ], 925 ],
924 'sources': [ 926 'sources': [
925 'tools/shader_bench/cpu_color_painter.cc', 927 'tools/shader_bench/cpu_color_painter.cc',
926 'tools/shader_bench/cpu_color_painter.h', 928 'tools/shader_bench/cpu_color_painter.h',
927 'tools/shader_bench/gpu_color_painter.cc', 929 'tools/shader_bench/gpu_color_painter.cc',
928 'tools/shader_bench/gpu_color_painter.h', 930 'tools/shader_bench/gpu_color_painter.h',
929 'tools/shader_bench/gpu_painter.cc', 931 'tools/shader_bench/gpu_painter.cc',
930 'tools/shader_bench/gpu_painter.h', 932 'tools/shader_bench/gpu_painter.h',
931 'tools/shader_bench/painter.cc', 933 'tools/shader_bench/painter.cc',
932 'tools/shader_bench/painter.h', 934 'tools/shader_bench/painter.h',
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1158 'media', 1160 'media',
1159 ], 1161 ],
1160 'sources': [ 1162 'sources': [
1161 'tools/media_bench/media_bench.cc', 1163 'tools/media_bench/media_bench.cc',
1162 ], 1164 ],
1163 }, 1165 },
1164 ], 1166 ],
1165 }] 1167 }]
1166 ], 1168 ],
1167 } 1169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698