| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 proto_library("stability_report_proto") { | 7 proto_library("stability_report_proto") { |
| 8 sources = [ | 8 sources = [ |
| 9 "stability_report.proto", | 9 "stability_report.proto", |
| 10 ] | 10 ] |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 | 58 |
| 59 static_library("postmortem_report_collector") { | 59 static_library("postmortem_report_collector") { |
| 60 sources = [ | 60 sources = [ |
| 61 "postmortem_report_collector.cc", | 61 "postmortem_report_collector.cc", |
| 62 "postmortem_report_collector.h", | 62 "postmortem_report_collector.h", |
| 63 ] | 63 ] |
| 64 deps = [ | 64 deps = [ |
| 65 ":postmortem_minidump_writer", | 65 ":postmortem_minidump_writer", |
| 66 ":stability_report_proto", | 66 ":stability_report_proto", |
| 67 "//base", | 67 "//base", |
| 68 "//components/version_info", | 68 "//components/crash/content/app:lib", |
| 69 "//third_party/crashpad/crashpad/client", | 69 "//third_party/crashpad/crashpad/client", |
| 70 "//third_party/crashpad/crashpad/util", | 70 "//third_party/crashpad/crashpad/util", |
| 71 ] | 71 ] |
| 72 } | 72 } |
| 73 | 73 |
| 74 source_set("unit_tests") { | 74 source_set("unit_tests") { |
| 75 testonly = true | 75 testonly = true |
| 76 sources = [ | 76 sources = [ |
| 77 "endsession_watcher_window_win_unittest.cc", | 77 "endsession_watcher_window_win_unittest.cc", |
| 78 "exit_code_watcher_win_unittest.cc", | 78 "exit_code_watcher_win_unittest.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 106 | 106 |
| 107 executable("dump_postmortem") { | 107 executable("dump_postmortem") { |
| 108 sources = [ | 108 sources = [ |
| 109 "dump_postmortem_minidump_main_win.cc", | 109 "dump_postmortem_minidump_main_win.cc", |
| 110 ] | 110 ] |
| 111 deps = [ | 111 deps = [ |
| 112 ":stability_report_proto", | 112 ":stability_report_proto", |
| 113 "//base", | 113 "//base", |
| 114 ] | 114 ] |
| 115 } | 115 } |
| OLD | NEW |