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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 1859013002: Copy cdb.exe into telemetry_chrome_test's isolate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix-windows-stack-symbolization
Patch Set: Addressed review feedback from scottmg and maruel. Created 4 years, 8 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
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 'build_angle_deqp_tests%': 0, 6 'build_angle_deqp_tests%': 0,
7 'chrome_browser_extensions_test_support_sources': [ 7 'chrome_browser_extensions_test_support_sources': [
8 # A list of sources which is shared between different browser tests. 8 # A list of sources which is shared between different browser tests.
9 'browser/apps/app_browsertest_util.cc', 9 'browser/apps/app_browsertest_util.cc',
10 'browser/apps/app_browsertest_util.h', 10 'browser/apps/app_browsertest_util.h',
(...skipping 3241 matching lines...) Expand 10 before | Expand all | Expand 10 after
3252 '../content/content_shell_and_tests.gyp:telemetry_base', 3252 '../content/content_shell_and_tests.gyp:telemetry_base',
3253 ], 3253 ],
3254 'conditions': [ 3254 'conditions': [
3255 ['OS=="linux" or OS=="mac"', { 3255 ['OS=="linux" or OS=="mac"', {
3256 'dependencies': [ 3256 'dependencies': [
3257 '../breakpad/breakpad.gyp:dump_syms#host', 3257 '../breakpad/breakpad.gyp:dump_syms#host',
3258 ], 3258 ],
3259 }], 3259 }],
3260 ['OS=="mac" or OS=="win"', { 3260 ['OS=="mac" or OS=="win"', {
3261 'dependencies': [ 3261 'dependencies': [
3262 # TODO(kbr): port this dependency to GN. 3262 # TODO(kbr): port these dependencies to GN.
3263 'copy_cdb_to_output',
3263 '../third_party/crashpad/crashpad/tools/tools.gyp:crashpad_datab ase_util', 3264 '../third_party/crashpad/crashpad/tools/tools.gyp:crashpad_datab ase_util',
3264 ], 3265 ],
3265 }], 3266 }],
3266 ], 3267 ],
3267 }, 3268 },
3268 { 3269 {
3269 'target_name': 'gpu_tests_base', 3270 'target_name': 'gpu_tests_base',
3270 'type': 'none', 3271 'type': 'none',
3271 'dependencies': [ 3272 'dependencies': [
3272 # depend on icu to fix races. http://crbug.com/417583 3273 # depend on icu to fix races. http://crbug.com/417583
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
3412 ], 3413 ],
3413 'includes': [ 3414 'includes': [
3414 '../build/isolate.gypi', 3415 '../build/isolate.gypi',
3415 ], 3416 ],
3416 'sources': [ 3417 'sources': [
3417 'sync_integration_tests.isolate', 3418 'sync_integration_tests.isolate',
3418 ], 3419 ],
3419 }, 3420 },
3420 ], 3421 ],
3421 'conditions': [ 3422 'conditions': [
3423 ['OS=="win"', {
3424 'targets': [
3425 {
3426 # TODO(kbr): port this target to GN.
3427 'target_name': 'copy_cdb_to_output',
3428 'type': 'none',
3429 'actions': [
3430 {
3431 'action_name': 'copy_cdb',
3432 'inputs': [
3433 '<(DEPTH)/build/win/copy_cdb_to_output.py',
3434 ],
3435 'outputs': [
3436 '<(PRODUCT_DIR)/cdb.exe',
3437 '<(PRODUCT_DIR)/dbgeng.dll',
3438 '<(PRODUCT_DIR)/dbghelp.dll',
3439 '<(PRODUCT_DIR)/dbgmodel.dll',
3440 ],
3441 'action': ['python',
3442 '<(DEPTH)/build/win/copy_cdb_to_output.py',
3443 '<(PRODUCT_DIR)',
3444 '<(target_arch)'],
3445 'message': 'Copying cdb and dependencies to <(PRODUCT_DIR)',
3446 },
3447 ],
3448 },
3449 ],
3450 }],
3422 ['archive_gpu_tests==1', { 3451 ['archive_gpu_tests==1', {
3423 'targets': [ 3452 'targets': [
3424 { 3453 {
3425 # GN: //gpu:gl_tests_run 3454 # GN: //gpu:gl_tests_run
3426 'target_name': 'gl_tests_run', 3455 'target_name': 'gl_tests_run',
3427 'type': 'none', 3456 'type': 'none',
3428 'dependencies': [ 3457 'dependencies': [
3429 '../gpu/gpu.gyp:gl_tests', 3458 '../gpu/gpu.gyp:gl_tests',
3430 'gpu_tests_base', 3459 'gpu_tests_base',
3431 ], 3460 ],
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
3544 'browser', 3573 'browser',
3545 ], 3574 ],
3546 'sources': [ 3575 'sources': [
3547 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3576 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3548 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3577 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3549 ], 3578 ],
3550 }] 3579 }]
3551 }], 3580 }],
3552 ], # 'conditions' 3581 ], # 'conditions'
3553 } 3582 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698