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 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
831 }], | 831 }], |
832 ['OS == "win" or toolkit_uses_gtk == 1', { | 832 ['OS == "win" or toolkit_uses_gtk == 1', { |
833 'targets': [ | 833 'targets': [ |
834 { | 834 { |
835 'target_name': 'shader_bench', | 835 'target_name': 'shader_bench', |
836 'type': 'executable', | 836 'type': 'executable', |
837 'dependencies': [ | 837 'dependencies': [ |
838 'media', | 838 'media', |
839 'yuv_convert', | 839 'yuv_convert', |
840 '../base/base.gyp:base', | 840 '../base/base.gyp:base', |
841 '../ui/gfx/gl/gl.gyp:gl', | 841 '../ui/gl/gl.gyp:gl', |
842 ], | 842 ], |
843 'sources': [ | 843 'sources': [ |
844 'tools/shader_bench/shader_bench.cc', | 844 'tools/shader_bench/shader_bench.cc', |
845 'tools/shader_bench/cpu_color_painter.cc', | 845 'tools/shader_bench/cpu_color_painter.cc', |
846 'tools/shader_bench/cpu_color_painter.h', | 846 'tools/shader_bench/cpu_color_painter.h', |
847 'tools/shader_bench/gpu_color_painter.cc', | 847 'tools/shader_bench/gpu_color_painter.cc', |
848 'tools/shader_bench/gpu_color_painter.h', | 848 'tools/shader_bench/gpu_color_painter.h', |
849 'tools/shader_bench/gpu_painter.cc', | 849 'tools/shader_bench/gpu_painter.cc', |
850 'tools/shader_bench/gpu_painter.h', | 850 'tools/shader_bench/gpu_painter.h', |
851 'tools/shader_bench/painter.cc', | 851 'tools/shader_bench/painter.cc', |
(...skipping 23 matching lines...) Expand all Loading... |
875 }, | 875 }, |
876 ], | 876 ], |
877 }], | 877 }], |
878 ['OS == "linux" and target_arch != "arm"', { | 878 ['OS == "linux" and target_arch != "arm"', { |
879 'targets': [ | 879 'targets': [ |
880 { | 880 { |
881 'target_name': 'tile_render_bench', | 881 'target_name': 'tile_render_bench', |
882 'type': 'executable', | 882 'type': 'executable', |
883 'dependencies': [ | 883 'dependencies': [ |
884 '../base/base.gyp:base', | 884 '../base/base.gyp:base', |
885 '../ui/gfx/gl/gl.gyp:gl', | 885 '../ui/gl/gl.gyp:gl', |
886 ], | 886 ], |
887 'libraries': [ | 887 'libraries': [ |
888 '-lGL', | 888 '-lGL', |
889 '-ldl', | 889 '-ldl', |
890 ], | 890 ], |
891 'sources': [ | 891 'sources': [ |
892 'tools/tile_render_bench/tile_render_bench.cc', | 892 'tools/tile_render_bench/tile_render_bench.cc', |
893 ], | 893 ], |
894 }, | 894 }, |
895 ], | 895 ], |
896 }], | 896 }], |
897 ['os_posix == 1 and OS != "mac" and OS != "android"', { | 897 ['os_posix == 1 and OS != "mac" and OS != "android"', { |
898 'targets': [ | 898 'targets': [ |
899 { | 899 { |
900 'target_name': 'player_x11', | 900 'target_name': 'player_x11', |
901 'type': 'executable', | 901 'type': 'executable', |
902 'dependencies': [ | 902 'dependencies': [ |
903 'media', | 903 'media', |
904 'yuv_convert', | 904 'yuv_convert', |
905 '../base/base.gyp:base', | 905 '../base/base.gyp:base', |
906 '../ui/gfx/gl/gl.gyp:gl', | 906 '../ui/gl/gl.gyp:gl', |
907 ], | 907 ], |
908 'link_settings': { | 908 'link_settings': { |
909 'libraries': [ | 909 'libraries': [ |
910 '-ldl', | 910 '-ldl', |
911 '-lX11', | 911 '-lX11', |
912 '-lXrender', | 912 '-lXrender', |
913 '-lXext', | 913 '-lXext', |
914 ], | 914 ], |
915 }, | 915 }, |
916 'sources': [ | 916 'sources': [ |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1061 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 1061 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
1062 ], | 1062 ], |
1063 'sources': [ | 1063 'sources': [ |
1064 'tools/media_bench/media_bench.cc', | 1064 'tools/media_bench/media_bench.cc', |
1065 ], | 1065 ], |
1066 }, | 1066 }, |
1067 ], | 1067 ], |
1068 }] | 1068 }] |
1069 ], | 1069 ], |
1070 } | 1070 } |
OLD | NEW |