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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 101783011: Added isolates for remaining tests on GPU bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased before sending to try servers. Created 6 years, 11 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables' : { 5 'variables' : {
6 'chromedriver_unittest_sources': [ 6 'chromedriver_unittest_sources': [
7 'test/chromedriver/capabilities_unittest.cc', 7 'test/chromedriver/capabilities_unittest.cc',
8 'test/chromedriver/chrome/chrome_finder_unittest.cc', 8 'test/chromedriver/chrome/chrome_finder_unittest.cc',
9 'test/chromedriver/chrome/console_logger_unittest.cc', 9 'test/chromedriver/chrome/console_logger_unittest.cc',
10 'test/chromedriver/chrome/device_manager_unittest.cc', 10 'test/chromedriver/chrome/device_manager_unittest.cc',
(...skipping 2996 matching lines...) Expand 10 before | Expand all | Expand 10 after
3007 '../sync/sync.gyp:sync_java', 3007 '../sync/sync.gyp:sync_java',
3008 '../sync/sync.gyp:sync_java_test_support', 3008 '../sync/sync.gyp:sync_java_test_support',
3009 ], 3009 ],
3010 'includes': [ '../build/java.gypi' ], 3010 'includes': [ '../build/java.gypi' ],
3011 }, 3011 },
3012 ], 3012 ],
3013 }], 3013 }],
3014 ['test_isolation_mode != "noop"', { 3014 ['test_isolation_mode != "noop"', {
3015 'targets': [ 3015 'targets': [
3016 { 3016 {
3017 'target_name': 'angle_unittests_run',
3018 'type': 'none',
3019 'dependencies': [
3020 '../gpu/gpu.gyp:angle_unittests',
3021 ],
3022 'includes': [
3023 '../build/isolate.gypi',
3024 'angle_unittests.isolate',
3025 ],
3026 'sources': [
3027 'angle_unittests.isolate',
3028 ],
3029 },
3030 {
3017 'target_name': 'browser_tests_run', 3031 'target_name': 'browser_tests_run',
3018 'type': 'none', 3032 'type': 'none',
3019 'dependencies': [ 3033 'dependencies': [
3020 'browser_tests', 3034 'browser_tests',
3021 'chrome', 3035 'chrome',
3022 '../third_party/WebKit/public/blink_test_plugin.gyp:blink_test_plugi n', 3036 '../third_party/WebKit/public/blink_test_plugin.gyp:blink_test_plugi n',
3023 ], 3037 ],
3024 'includes': [ 3038 'includes': [
3025 '../build/isolate.gypi', 3039 '../build/isolate.gypi',
3026 'browser_tests.isolate', 3040 'browser_tests.isolate',
3027 ], 3041 ],
3028 'sources': [ 3042 'sources': [
3029 'browser_tests.isolate', 3043 'browser_tests.isolate',
3030 ], 3044 ],
3031 }, 3045 },
3032 { 3046 {
3047 'target_name': 'content_gl_tests_run',
3048 'type': 'none',
3049 'dependencies': [
3050 '../content/content_shell_and_tests.gyp:content_gl_tests',
3051 ],
3052 'includes': [
3053 '../build/isolate.gypi',
3054 'content_gl_tests.isolate',
3055 ],
3056 'sources': [
3057 'content_gl_tests.isolate',
3058 ],
3059 },
3060 {
3061 'target_name': 'gles2_conform_test_run',
3062 'type': 'none',
3063 'dependencies': [
3064 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_conform_t est',
3065 ],
3066 'includes': [
3067 '../build/isolate.gypi',
3068 'gles2_conform_test.isolate',
3069 ],
3070 'sources': [
3071 'gles2_conform_test.isolate',
3072 ],
3073 },
3074 {
3075 'target_name': 'gl_tests_run',
3076 'type': 'none',
3077 'dependencies': [
3078 '../gpu/gpu.gyp:gl_tests',
3079 ],
3080 'includes': [
3081 '../build/isolate.gypi',
3082 'gl_tests.isolate',
3083 ],
3084 'sources': [
3085 'gl_tests.isolate',
3086 ],
3087 },
3088 {
3033 'target_name': 'interactive_ui_tests_run', 3089 'target_name': 'interactive_ui_tests_run',
3034 'type': 'none', 3090 'type': 'none',
3035 'dependencies': [ 3091 'dependencies': [
3036 'interactive_ui_tests', 3092 'interactive_ui_tests',
3037 ], 3093 ],
3038 'conditions': [ 3094 'conditions': [
3039 ['use_x11 == 1', { 3095 ['use_x11 == 1', {
3040 'dependencies': [ 3096 'dependencies': [
3041 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 3097 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
3042 ], 3098 ],
(...skipping 22 matching lines...) Expand all
3065 ], 3121 ],
3066 'includes': [ 3122 'includes': [
3067 '../build/isolate.gypi', 3123 '../build/isolate.gypi',
3068 'sync_integration_tests.isolate', 3124 'sync_integration_tests.isolate',
3069 ], 3125 ],
3070 'sources': [ 3126 'sources': [
3071 'sync_integration_tests.isolate', 3127 'sync_integration_tests.isolate',
3072 ], 3128 ],
3073 }, 3129 },
3074 { 3130 {
3131 'target_name': 'tab_capture_performance_tests_run',
3132 'type': 'none',
3133 'dependencies': [
3134 'performance_browser_tests',
3135 ],
3136 'includes': [
3137 '../build/isolate.gypi',
3138 'tab_capture_performance_tests.isolate',
3139 ],
3140 'sources': [
3141 'tab_capture_performance_tests.isolate',
3142 ],
3143 },
3144 {
3075 'target_name': 'telemetry_gpu_test_run', 3145 'target_name': 'telemetry_gpu_test_run',
3076 'type': 'none', 3146 'type': 'none',
3077 'dependencies': [ 3147 'dependencies': [
3078 'chrome_run', 3148 'chrome_run',
3079 ], 3149 ],
3080 'includes': [ 3150 'includes': [
3081 '../build/isolate.gypi', 3151 '../build/isolate.gypi',
3082 'telemetry_gpu_test.isolate', 3152 'telemetry_gpu_test.isolate',
3083 ], 3153 ],
3084 'sources': [ 3154 'sources': [
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
3117 'utility', 3187 'utility',
3118 ], 3188 ],
3119 'sources': [ 3189 'sources': [
3120 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3190 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3121 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3191 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3122 ], 3192 ],
3123 }] 3193 }]
3124 }], 3194 }],
3125 ], # 'conditions' 3195 ], # 'conditions'
3126 } 3196 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698