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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/browser_watcher/BUILD.gn
diff --git a/components/browser_watcher/BUILD.gn b/components/browser_watcher/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..0dd629e276e2861dd28879736fdf4df9fc6dba91
--- /dev/null
+++ b/components/browser_watcher/BUILD.gn
@@ -0,0 +1,45 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("browser_watcher") {
+ # This is a separate lib to minimize the dependencies for its
+ # hosting binary "chrome_watcher.dll".
+ sources = [
+ "endsession_watcher_window_win.cc",
+ "endsession_watcher_window_win.h",
+ "exit_code_watcher_win.cc",
+ "exit_code_watcher_win.h",
+ "exit_funnel_win.cc",
+ "exit_funnel_win.h",
+ ]
+ deps = [
+ "//base",
+ ]
+}
+
+source_set("browser_watcher_client") {
+ sources = [
+ "watcher_client_win.cc",
+ "watcher_client_win.h",
+ "watcher_metrics_provider_win.cc",
+ "watcher_metrics_provider_win.h",
+ ]
+ deps = [
+ "//base",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "endsession_watcher_window_win_unittest.cc",
+ "exit_code_watcher_win_unittest.cc",
+ "exit_funnel_win_unittest.cc",
+ "watcher_client_win_unittest.cc",
+ "watcher_metrics_provider_win_unittest.cc",
+ ]
+ deps = [
+ "//testing/gtest",
+ ]
+}
« 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