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

Side by Side Diff: components/browser_watcher/BUILD.gn

Issue 858783003: Add GN file for components/browser_watcher. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 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 source_set("browser_watcher") {
6 # This is a separate lib to minimize the dependencies for its
7 # hosting binary "chrome_watcher.dll".
8 sources = [
9 "endsession_watcher_window_win.cc",
10 "endsession_watcher_window_win.h",
11 "exit_code_watcher_win.cc",
12 "exit_code_watcher_win.h",
13 "exit_funnel_win.cc",
14 "exit_funnel_win.h",
15 ]
16 deps = [
17 "//base",
18 ]
19 }
20
21 source_set("browser_watcher_client") {
22 sources = [
23 "watcher_client_win.cc",
24 "watcher_client_win.h",
25 "watcher_metrics_provider_win.cc",
26 "watcher_metrics_provider_win.h",
27 ]
28 deps = [
29 "//base",
30 ]
31 }
32
33 source_set("unit_tests") {
34 testonly = true
35 sources = [
36 "endsession_watcher_window_win_unittest.cc",
37 "exit_code_watcher_win_unittest.cc",
38 "exit_funnel_win_unittest.cc",
39 "watcher_client_win_unittest.cc",
40 "watcher_metrics_provider_win_unittest.cc",
41 ]
42 deps = [
43 "//testing/gtest",
44 ]
45 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698