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

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: Fix copyright year. 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
« no previous file with comments | « media/filters/video_renderer_base_unittest.cc ('k') | media/tools/player_wtl/view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 ['os_posix == 1 and OS != "mac" and OS != "android"', { 980 ['os_posix == 1 and OS != "mac" and OS != "android"', {
979 'targets': [ 981 'targets': [
980 { 982 {
981 'target_name': 'player_x11', 983 'target_name': 'player_x11',
982 'type': 'executable', 984 'type': 'executable',
983 'dependencies': [ 985 'dependencies': [
984 'media', 986 'media',
985 'yuv_convert', 987 'yuv_convert',
986 '../base/base.gyp:base', 988 '../base/base.gyp:base',
987 '../ui/gl/gl.gyp:gl', 989 '../ui/gl/gl.gyp:gl',
990 '../ui/ui.gyp:ui',
988 ], 991 ],
989 'link_settings': { 992 'link_settings': {
990 'libraries': [ 993 'libraries': [
991 '-ldl', 994 '-ldl',
992 '-lX11', 995 '-lX11',
993 '-lXrender', 996 '-lXrender',
994 '-lXext', 997 '-lXext',
995 ], 998 ],
996 }, 999 },
997 'sources': [ 1000 'sources': [
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
1158 'media', 1161 'media',
1159 ], 1162 ],
1160 'sources': [ 1163 'sources': [
1161 'tools/media_bench/media_bench.cc', 1164 'tools/media_bench/media_bench.cc',
1162 ], 1165 ],
1163 }, 1166 },
1164 ], 1167 ],
1165 }] 1168 }]
1166 ], 1169 ],
1167 } 1170 }
OLDNEW
« no previous file with comments | « media/filters/video_renderer_base_unittest.cc ('k') | media/tools/player_wtl/view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698