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

Side by Side Diff: chrome/chrome_watcher/chrome_watcher.gypi

Issue 1834463002: Identify the hung thread using the Wait Chain Traversal API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments/questions Created 4 years, 9 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'includes': [ 8 'includes': [
9 '../../build/util/version.gypi', 9 '../../build/util/version.gypi',
10 '../../build/win_precompile.gypi', 10 '../../build/win_precompile.gypi',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 { 50 {
51 'target_name': 'chrome_watcher', 51 'target_name': 'chrome_watcher',
52 'type': 'loadable_module', 52 'type': 'loadable_module',
53 'include_dirs': [ 53 'include_dirs': [
54 '../..', 54 '../..',
55 ], 55 ],
56 'sources': [ 56 'sources': [
57 '<(SHARED_INTERMEDIATE_DIR)/chrome_watcher/chrome_watcher_version.rc', 57 '<(SHARED_INTERMEDIATE_DIR)/chrome_watcher/chrome_watcher_version.rc',
58 'chrome_watcher.def', 58 'chrome_watcher.def',
59 'chrome_watcher_main.cc', 59 'chrome_watcher_main.cc',
60 'wait_chain_util_win.cc',
61 'wait_chain_util_win.h',
60 ], 62 ],
61 'dependencies': [ 63 'dependencies': [
62 'chrome_watcher_client', 64 'chrome_watcher_client',
63 'chrome_watcher_resources', 65 'chrome_watcher_resources',
64 'installer_util', 66 'installer_util',
65 '../base/base.gyp:base', 67 '../base/base.gyp:base',
66 '../components/components.gyp:browser_watcher', 68 '../components/components.gyp:browser_watcher',
67 '../third_party/kasko/kasko.gyp:kasko', 69 '../third_party/kasko/kasko.gyp:kasko',
68 '../components/components.gyp:crash_component' 70 '../components/components.gyp:crash_component'
69 ], 71 ],
70 'msvs_settings': { 72 'msvs_settings': {
71 'VCLinkerTool': { 73 'VCLinkerTool': {
72 # Set /SUBSYSTEM:WINDOWS. 74 # Set /SUBSYSTEM:WINDOWS.
73 'SubSystem': '2', 75 'SubSystem': '2',
74 }, 76 },
75 }, 77 },
76 }, 78 },
77 ], 79 ],
78 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698