OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'pyautolib_sources': [ | 7 'pyautolib_sources': [ |
8 'app/chrome_command_ids.h', | 8 'app/chrome_command_ids.h', |
9 'app/chrome_dll_resource.h', | 9 'app/chrome_dll_resource.h', |
10 'common/automation_constants.h', | 10 'common/automation_constants.h', |
(...skipping 2862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2873 ], | 2873 ], |
2874 }], | 2874 }], |
2875 ['toolkit_views==1', { | 2875 ['toolkit_views==1', { |
2876 'dependencies': [ | 2876 'dependencies': [ |
2877 '../views/views.gyp:views', | 2877 '../views/views.gyp:views', |
2878 ], | 2878 ], |
2879 }], | 2879 }], |
2880 ], | 2880 ], |
2881 }, | 2881 }, |
2882 { | 2882 { |
2883 'target_name': 'performance_ui_tests', | |
2884 'type': 'executable', | |
2885 'msvs_guid': 'C3539D2F-B87A-4F9B-8220-1BB5F7119720', | |
2886 'dependencies': [ | |
2887 'chrome', | |
2888 'chrome_resources', | |
2889 'chrome_strings', | |
2890 'debugger', | |
2891 'test_support_common', | |
2892 'test_support_ui', | |
2893 '../base/base.gyp:base', | |
2894 '../skia/skia.gyp:skia', | |
2895 '../testing/gtest.gyp:gtest', | |
2896 ], | |
2897 'sources': [ | |
2898 # TODO(darin): Move other UIPerfTests here. | |
2899 'test/perf/frame_rate/frame_rate_tests.cc', | |
2900 ], | |
2901 'conditions': [ | |
2902 ['OS=="win" and buildtype=="Official"', { | |
2903 'configurations': { | |
2904 'Release': { | |
2905 'msvs_settings': { | |
2906 'VCCLCompilerTool': { | |
2907 'WholeProgramOptimization': 'false', | |
2908 }, | |
2909 }, | |
2910 }, | |
2911 }, | |
2912 },], | |
2913 ['OS=="linux"', { | |
2914 'dependencies': [ | |
2915 '../build/linux/system.gyp:gtk', | |
2916 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | |
2917 ], | |
2918 }], | |
2919 ['toolkit_views==1', { | |
2920 'dependencies': [ | |
2921 '../views/views.gyp:views', | |
2922 ], | |
2923 }], | |
2924 ], | |
2925 }, | |
2926 { | |
2927 'target_name': 'tab_switching_test', | 2883 'target_name': 'tab_switching_test', |
2928 'type': 'executable', | 2884 'type': 'executable', |
2929 'msvs_guid': 'A34770EA-A574-43E8-9327-F79C04770E98', | 2885 'msvs_guid': 'A34770EA-A574-43E8-9327-F79C04770E98', |
2930 'run_as': { | 2886 'run_as': { |
2931 'action': ['$(TargetPath)', '--gtest_print_time'], | 2887 'action': ['$(TargetPath)', '--gtest_print_time'], |
2932 }, | 2888 }, |
2933 'dependencies': [ | 2889 'dependencies': [ |
2934 'chrome', | 2890 'chrome', |
2935 'debugger', | 2891 'debugger', |
2936 'test_support_common', | 2892 'test_support_common', |
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4033 ] | 3989 ] |
4034 }], # 'coverage!=0' | 3990 }], # 'coverage!=0' |
4035 ], # 'conditions' | 3991 ], # 'conditions' |
4036 } | 3992 } |
4037 | 3993 |
4038 # Local Variables: | 3994 # Local Variables: |
4039 # tab-width:2 | 3995 # tab-width:2 |
4040 # indent-tabs-mode:nil | 3996 # indent-tabs-mode:nil |
4041 # End: | 3997 # End: |
4042 # vim: set expandtab tabstop=2 shiftwidth=2: | 3998 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |