summaryrefslogtreecommitdiffstats
path: root/components/crash/content/tools/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'components/crash/content/tools/BUILD.gn')
-rw-r--r--components/crash/content/tools/BUILD.gn18
1 files changed, 18 insertions, 0 deletions
diff --git a/components/crash/content/tools/BUILD.gn b/components/crash/content/tools/BUILD.gn
new file mode 100644
index 0000000..82f282b
--- /dev/null
+++ b/components/crash/content/tools/BUILD.gn
@@ -0,0 +1,18 @@
+# Copyright 2014 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.
+
+if (is_win) {
+ source_set("crash_service") {
+ sources = [
+ "crash_service.cc",
+ "crash_service.h",
+ ]
+
+ deps = [
+ "//base",
+ "//breakpad:breakpad_handler",
+ "//breakpad:breakpad_sender",
+ ]
+ }
+}