aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/CrashHandler.cpp
diff options
context:
space:
mode:
authorGravatar borenet <borenet@google.com>2015-04-02 12:16:36 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-02 12:16:36 -0700
commit4808757d7a8bbe8c773a312a894738e9ff701b5f (patch)
tree62eb6866702dbd1df89964c7659e39bda2bfdea3 /tools/CrashHandler.cpp
parent07342361a3cda94376230b37d9e863052449653c (diff)
Remove all code related to NaCl
Diffstat (limited to 'tools/CrashHandler.cpp')
-rw-r--r--tools/CrashHandler.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/tools/CrashHandler.cpp b/tools/CrashHandler.cpp
index 2ab6a9da44..e26772b4ba 100644
--- a/tools/CrashHandler.cpp
+++ b/tools/CrashHandler.cpp
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#include "CrashHandler.h"
#include "SkTypes.h"
@@ -47,7 +54,7 @@
_Exit(sig);
}
- #elif defined(SK_BUILD_FOR_UNIX) && !defined(SK_BUILD_FOR_NACL) // NACL doesn't have backtrace.
+ #elif defined(SK_BUILD_FOR_UNIX)
// We'd use libunwind here too, but it's a pain to get installed for
// both 32 and 64 bit on bots. Doesn't matter much: catchsegv is best anyway.
@@ -67,7 +74,7 @@
#endif
- #if (defined(SK_BUILD_FOR_MAC) || (defined(SK_BUILD_FOR_UNIX) && !defined(SK_BUILD_FOR_NACL)))
+ #if defined(SK_BUILD_FOR_MAC) || defined(SK_BUILD_FOR_UNIX)
#include <signal.h>
void SetupCrashHandler() {