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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 1852393002: Fix stack symbolization in Telemetry on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 3237 matching lines...) Expand 10 before | Expand all | Expand 10 after
3248 'type': 'none', 3248 'type': 'none',
3249 'dependencies': [ 3249 'dependencies': [
3250 '../content/content_shell_and_tests.gyp:telemetry_base', 3250 '../content/content_shell_and_tests.gyp:telemetry_base',
3251 ], 3251 ],
3252 'conditions': [ 3252 'conditions': [
3253 ['OS=="linux" or OS=="mac"', { 3253 ['OS=="linux" or OS=="mac"', {
3254 'dependencies': [ 3254 'dependencies': [
3255 '../breakpad/breakpad.gyp:dump_syms#host', 3255 '../breakpad/breakpad.gyp:dump_syms#host',
3256 ], 3256 ],
3257 }], 3257 }],
3258 ['OS=="mac"', { 3258 ['OS=="mac" or OS=="win"', {
3259 'dependencies': [ 3259 'dependencies': [
3260 # TODO(kbr): port this dependency to GN.
Ken Russell (switch to Gerrit) 2016/04/04 19:14:11 dpranke: should I file a bug about this? If so wha
3260 '../third_party/crashpad/crashpad/tools/tools.gyp:crashpad_datab ase_util', 3261 '../third_party/crashpad/crashpad/tools/tools.gyp:crashpad_datab ase_util',
3261 ], 3262 ],
3262 }], 3263 }],
3263 ['OS=="win"', {
3264 'dependencies': [
3265 'chrome.gyp:crash_service',
3266 ],
3267 }],
3268 ], 3264 ],
3269 }, 3265 },
3270 { 3266 {
3271 'target_name': 'gpu_tests_base', 3267 'target_name': 'gpu_tests_base',
3272 'type': 'none', 3268 'type': 'none',
3273 'dependencies': [ 3269 'dependencies': [
3274 # depend on icu to fix races. http://crbug.com/417583 3270 # depend on icu to fix races. http://crbug.com/417583
3275 '../third_party/icu/icu.gyp:icudata', 3271 '../third_party/icu/icu.gyp:icudata',
3276 ], 3272 ],
3277 # Set this so we aren't included as a target in files that 3273 # Set this so we aren't included as a target in files that
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
3547 'browser', 3543 'browser',
3548 ], 3544 ],
3549 'sources': [ 3545 'sources': [
3550 'tools/service_discovery_sniffer/service_discovery_sniffer.cc', 3546 'tools/service_discovery_sniffer/service_discovery_sniffer.cc',
3551 'tools/service_discovery_sniffer/service_discovery_sniffer.h', 3547 'tools/service_discovery_sniffer/service_discovery_sniffer.h',
3552 ], 3548 ],
3553 }] 3549 }]
3554 }], 3550 }],
3555 ], # 'conditions' 3551 ], # 'conditions'
3556 } 3552 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698