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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 7038052: Add initial framework for performance tests that measure frame rate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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 | « no previous file | chrome/test/data/perf/frame_rate/blank/test.html » ('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) 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 2852 matching lines...) Expand 10 before | Expand all | Expand 10 after
2863 ], 2863 ],
2864 }], 2864 }],
2865 ['toolkit_views==1', { 2865 ['toolkit_views==1', {
2866 'dependencies': [ 2866 'dependencies': [
2867 '../views/views.gyp:views', 2867 '../views/views.gyp:views',
2868 ], 2868 ],
2869 }], 2869 }],
2870 ], 2870 ],
2871 }, 2871 },
2872 { 2872 {
2873 'target_name': 'performance_ui_tests',
2874 'type': 'executable',
2875 'msvs_guid': 'C3539D2F-B87A-4F9B-8220-1BB5F7119720',
2876 'dependencies': [
2877 'chrome',
2878 'chrome_resources',
2879 'chrome_strings',
2880 'debugger',
2881 'test_support_common',
2882 'test_support_ui',
2883 '../base/base.gyp:base',
2884 '../skia/skia.gyp:skia',
2885 '../testing/gtest.gyp:gtest',
2886 ],
2887 'sources': [
2888 # TODO(darin): Move other UIPerfTests here.
2889 'test/perf/frame_rate/frame_rate_tests.cc',
2890 ],
2891 'conditions': [
2892 ['OS=="win" and buildtype=="Official"', {
2893 'configurations': {
2894 'Release': {
2895 'msvs_settings': {
2896 'VCCLCompilerTool': {
2897 'WholeProgramOptimization': 'false',
2898 },
2899 },
2900 },
2901 },
2902 },],
2903 ['OS=="linux"', {
2904 'dependencies': [
2905 '../build/linux/system.gyp:gtk',
2906 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2907 ],
2908 }],
2909 ['toolkit_views==1', {
2910 'dependencies': [
2911 '../views/views.gyp:views',
2912 ],
2913 }],
2914 ],
2915 },
2916 {
2873 'target_name': 'tab_switching_test', 2917 'target_name': 'tab_switching_test',
2874 'type': 'executable', 2918 'type': 'executable',
2875 'msvs_guid': 'A34770EA-A574-43E8-9327-F79C04770E98', 2919 'msvs_guid': 'A34770EA-A574-43E8-9327-F79C04770E98',
2876 'run_as': { 2920 'run_as': {
2877 'action': ['$(TargetPath)', '--gtest_print_time'], 2921 'action': ['$(TargetPath)', '--gtest_print_time'],
2878 }, 2922 },
2879 'dependencies': [ 2923 'dependencies': [
2880 'chrome', 2924 'chrome',
2881 'debugger', 2925 'debugger',
2882 'test_support_common', 2926 'test_support_common',
(...skipping 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after
3978 ] 4022 ]
3979 }], # 'coverage!=0' 4023 }], # 'coverage!=0'
3980 ], # 'conditions' 4024 ], # 'conditions'
3981 } 4025 }
3982 4026
3983 # Local Variables: 4027 # Local Variables:
3984 # tab-width:2 4028 # tab-width:2
3985 # indent-tabs-mode:nil 4029 # indent-tabs-mode:nil
3986 # End: 4030 # End:
3987 # vim: set expandtab tabstop=2 shiftwidth=2: 4031 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/test/data/perf/frame_rate/blank/test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698