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

Unified Diff: chrome/app/BUILD.gn

Issue 2729633002: mash: Cleanly exit on SIGTERM, SIGINT, SIGHUP (Closed)
Patch Set: Created 3 years, 10 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 | chrome/app/mash/BUILD.gn » ('j') | chrome/app/shutdown_signal_handlers_posix.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/BUILD.gn
diff --git a/chrome/app/BUILD.gn b/chrome/app/BUILD.gn
index 010ecb459d630912220815265d61680837f34bc8..77d4efe999fc53bc9d0155dbf917dd572d139f42 100644
--- a/chrome/app/BUILD.gn
+++ b/chrome/app/BUILD.gn
@@ -17,6 +17,18 @@ source_set("command_ids") {
]
}
+# Shared by //chrome/browser and //chrome/app/mash. Not in //chrome/common
+# because it isn't shared with processes like renderer, utility, etc.
James Cook 2017/03/01 18:24:38 I ran this by sky@ -- there's not a great place fo
+source_set("shutdown_signal_handlers") {
+ sources = [
+ "shutdown_signal_handlers_posix.cc",
+ "shutdown_signal_handlers_posix.h",
+ ]
+ deps = [
+ "//base",
+ ]
+}
+
# On Windows, links chrome_dll.rc. On other platforms, does nothing so you can
# unconditionally depend on it.
source_set("chrome_dll_resources") {
« no previous file with comments | « no previous file | chrome/app/mash/BUILD.gn » ('j') | chrome/app/shutdown_signal_handlers_posix.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698