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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 1412333004: Run telemetry_perf_unittests via isolate on "Mac tests", "Linux tests" and trybot with swarming (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix + swarming Created 5 years, 1 month 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
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 'chrome_browser_extensions_test_support_sources': [ 6 'chrome_browser_extensions_test_support_sources': [
7 # A list of sources which is shared between different browser tests. 7 # A list of sources which is shared between different browser tests.
8 'browser/apps/app_browsertest_util.cc', 8 'browser/apps/app_browsertest_util.cc',
9 'browser/apps/app_browsertest_util.h', 9 'browser/apps/app_browsertest_util.h',
10 'browser/extensions/browsertest_util.cc', 10 'browser/extensions/browsertest_util.cc',
(...skipping 3162 matching lines...) Expand 10 before | Expand all | Expand 10 after
3173 'telemetry_perf_unittests_android.isolate', 3173 'telemetry_perf_unittests_android.isolate',
3174 ], 3174 ],
3175 }], 3175 }],
3176 } 3176 }
3177 ], 3177 ],
3178 ], 3178 ],
3179 }], 3179 }],
3180 ['test_isolation_mode != "noop"', { 3180 ['test_isolation_mode != "noop"', {
3181 'targets': [ 3181 'targets': [
3182 { 3182 {
3183 'target_name': 'telemetry_chrome_test_base',
3184 'type': 'none',
3185 'dependencies': [
3186 '../content/content_shell_and_tests.gyp:telemetry_base',
3187 ],
3188 'conditions': [
3189 ['OS=="linux" or OS=="mac"', {
3190 'dependencies': [
3191 '../breakpad/breakpad.gyp:dump_syms',
3192 ],
3193 }],
3194 ['OS=="mac"', {
3195 'dependencies': [
3196 '../third_party/crashpad/crashpad/tools/tools.gyp:crashpad_datab ase_util',
3197 ],
3198 }],
3199 ['OS=="win"', {
3200 'dependencies': [
3201 'chrome.gyp:crash_service',
3202 ],
3203 }],
3204 ],
3205 },
3206 {
3183 'target_name': 'browser_tests_run', 3207 'target_name': 'browser_tests_run',
3184 'type': 'none', 3208 'type': 'none',
3185 'dependencies': [ 3209 'dependencies': [
3186 '../content/content_shell_and_tests.gyp:copy_test_netscape_plugin', 3210 '../content/content_shell_and_tests.gyp:copy_test_netscape_plugin',
3187 'browser_tests', 3211 'browser_tests',
3188 'chrome', 3212 'chrome',
3189 ], 3213 ],
3190 'includes': [ 3214 'includes': [
3191 '../build/isolate.gypi', 3215 '../build/isolate.gypi',
3192 ], 3216 ],
3193 'sources': [ 3217 'sources': [
3194 'browser_tests.isolate', 3218 'browser_tests.isolate',
3195 ], 3219 ],
3196 'conditions': [ 3220 'conditions': [
3197 ['use_x11==1', { 3221 ['use_x11==1', {
3198 'dependencies': [ 3222 'dependencies': [
3199 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 3223 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
3200 ], 3224 ],
3201 }], 3225 }],
3202 ], 3226 ],
3203 }, 3227 },
3204 { 3228 {
3229 'target_name': 'telemetry_perf_unittests',
3230 'type': 'none',
3231 'dependencies': [
3232 'chrome_run',
3233 'telemetry_chrome_test_base'
3234 ],
3235 'includes': [
3236 '../build/isolate.gypi',
3237 ],
3238 'sources': [
3239 'telemetry_perf_unittests.isolate',
3240 ],
3241 },
3242 {
3205 'target_name': 'telemetry_gpu_unittests', 3243 'target_name': 'telemetry_gpu_unittests',
3206 'type': 'none', 3244 'type': 'none',
3207 'dependencies': [ 3245 'dependencies': [
3208 '../content/content_shell_and_tests.gyp:telemetry_base', 3246 '../content/content_shell_and_tests.gyp:telemetry_base',
3209 ], 3247 ],
3210 'includes': [ 3248 'includes': [
3211 '../build/isolate.gypi', 3249 '../build/isolate.gypi',
3212 ], 3250 ],
3213 'sources': [ 3251 'sources': [
3214 'telemetry_gpu_unittests.isolate', 3252 'telemetry_gpu_unittests.isolate',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
3290 # If we didn't do this the All target ends up with a rule that 3328 # If we didn't do this the All target ends up with a rule that
3291 # makes it unnecessarily compile in certain situations. 3329 # makes it unnecessarily compile in certain situations.
3292 'suppress_wildcard': 1, 3330 'suppress_wildcard': 1,
3293 'direct_dependent_settings': { 3331 'direct_dependent_settings': {
3294 'includes': [ 3332 'includes': [
3295 '../build/isolate.gypi', 3333 '../build/isolate.gypi',
3296 ], 3334 ],
3297 }, 3335 },
3298 }, 3336 },
3299 { 3337 {
3300 'target_name': 'telemetry_chrome_test_base',
3301 'type': 'none',
3302 'dependencies': [
3303 '../content/content_shell_and_tests.gyp:telemetry_base',
3304 ],
3305 'conditions': [
3306 ['OS=="linux" or OS=="mac"', {
3307 'dependencies': [
3308 '../breakpad/breakpad.gyp:dump_syms',
3309 ],
3310 }],
3311 ['OS=="mac"', {
3312 'dependencies': [
3313 '../third_party/crashpad/crashpad/tools/tools.gyp:crashpad_d atabase_util',
3314 ],
3315 }],
3316 ['OS=="win"', {
3317 'dependencies': [
3318 'chrome.gyp:crash_service',
3319 ],
3320 }],
3321 ],
3322 },
3323 {
3324 # GN: //gpu:angle_unittests_run 3338 # GN: //gpu:angle_unittests_run
3325 'target_name': 'angle_unittests_run', 3339 'target_name': 'angle_unittests_run',
3326 'type': 'none', 3340 'type': 'none',
3327 'dependencies': [ 3341 'dependencies': [
3328 '../gpu/gpu.gyp:angle_unittests', 3342 '../gpu/gpu.gyp:angle_unittests',
3329 'gpu_tests_base', 3343 'gpu_tests_base',
3330 ], 3344 ],
3331 'sources': [ 3345 'sources': [
3332 'angle_unittests.isolate', 3346 'angle_unittests.isolate',
3333 ], 3347 ],
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
3443 'utility', 3457 'utility',
3444 ], 3458 ],
3445 'sources': [ 3459 'sources': [
3446 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3460 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3447 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3461 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3448 ], 3462 ],
3449 }] 3463 }]
3450 }], 3464 }],
3451 ], # 'conditions' 3465 ], # 'conditions'
3452 } 3466 }
OLDNEW
« no previous file with comments | « no previous file | chrome/telemetry_perf_unittests.isolate » ('j') | chrome/telemetry_perf_unittests.isolate » ('J')

Powered by Google App Engine
This is Rietveld 408576698