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

Side by Side Diff: components/browser_watcher.gypi

Issue 717223002: Browser watcher end-end-to-end . (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git/+/lkgr
Patch Set: Move to components Created 6 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
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'conditions': [
7 ['OS=="win"', {
8 'targets': [
9 {
10 # Chrome watcher is a standalone DLL that's used to monitor the
11 # browser's exit code to determine the cause of exit.
12 # It's hosted by chrome.exe in when it's passed --type=watcher
13 'target_name': 'browser_watcher',
14 # The DLL is named "chrome_watcher.dll".
15 'product_name': 'chrome_watcher',
16 'type': 'loadable_module',
17 'sources': [
18 'browser_watcher/watcher_main_win.cc',
19 'browser_watcher/watcher_main_win.h',
20 ],
21 'dependencies': [
22 'browser_watcher_lib',
23 '../base/base.gyp:base',
24 '../chrome/common_constants.gyp:common_constants',
25 ],
26 },
27 {
28 'target_name': 'browser_watcher_lib',
29 'type': 'static_library',
30 'sources': [
31 'browser_watcher/watcher_win.cc',
32 'browser_watcher/watcher_win.h',
33 ],
34 'dependencies': [
35 '../base/base.gyp:base',
36 ],
37 },
38 {
39 # Users of the watcher link this target.
40 'target_name': 'browser_watcher_client',
41 'type': 'static_library',
42 'sources': [
43 'browser_watcher/watcher_client_win.cc',
44 'browser_watcher/watcher_client_win.h',
45 'browser_watcher/watcher_metrics_provider_win.cc',
46 'browser_watcher/watcher_metrics_provider_win.h',
47 ],
48 'dependencies': [
49 'browser_watcher',
50 '../base/base.gyp:base',
51 ],
52 },
53 ],
54 }
55 ],
56 ],
57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698