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

Side by Side Diff: components/browser_watcher.gypi

Issue 796963002: Instrument some of the exit paths likely to suffer hangs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@end_session_instrument
Patch Set: Add instrumentation for browser exit, plus now actually compiles Created 6 years 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 (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['OS=="win"', { 7 ['OS=="win"', {
8 'targets': [ 8 'targets': [
9 { 9 {
10 # This is a separate lib to minimize the dependencies for its 10 # This is a separate lib to minimize the dependencies for its
11 # hosting binary "chrome_watcher.dll". 11 # hosting binary "chrome_watcher.dll".
12 'target_name': 'browser_watcher', 12 'target_name': 'browser_watcher',
13 'type': 'static_library', 13 'type': 'static_library',
14 'sources': [ 14 'sources': [
15 'browser_watcher/exit_code_watcher_win.cc', 15 'browser_watcher/exit_code_watcher_win.cc',
16 'browser_watcher/exit_code_watcher_win.h', 16 'browser_watcher/exit_code_watcher_win.h',
17 'browser_watcher/exit_funnel_win.cc',
18 'browser_watcher/exit_funnel_win.h',
17 ], 19 ],
18 'dependencies': [ 20 'dependencies': [
19 '../base/base.gyp:base', 21 '../base/base.gyp:base',
20 ], 22 ],
21 }, 23 },
22 { 24 {
23 # Users of the watcher link this target. 25 # Users of the watcher link this target.
24 'target_name': 'browser_watcher_client', 26 'target_name': 'browser_watcher_client',
25 'type': 'static_library', 27 'type': 'static_library',
26 'sources': [ 28 'sources': [
27 'browser_watcher/exit_funnel_win.cc',
28 'browser_watcher/exit_funnel_win.h',
29 'browser_watcher/watcher_client_win.cc', 29 'browser_watcher/watcher_client_win.cc',
30 'browser_watcher/watcher_client_win.h', 30 'browser_watcher/watcher_client_win.h',
31 'browser_watcher/watcher_main_api_win.cc', 31 'browser_watcher/watcher_main_api_win.cc',
32 'browser_watcher/watcher_main_api_win.h', 32 'browser_watcher/watcher_main_api_win.h',
33 'browser_watcher/watcher_metrics_provider_win.cc', 33 'browser_watcher/watcher_metrics_provider_win.cc',
34 'browser_watcher/watcher_metrics_provider_win.h', 34 'browser_watcher/watcher_metrics_provider_win.h',
35 ], 35 ],
36 'dependencies': [ 36 'dependencies': [
37 'browser_watcher', 37 'browser_watcher',
38 '../base/base.gyp:base', 38 '../base/base.gyp:base',
39 ], 39 ],
40 }, 40 },
41 ], 41 ],
42 } 42 }
43 ], 43 ],
44 ], 44 ],
45 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698