| 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 if (is_win) { | 7 if (is_win) { |
| 8 proto_library("stability_report_proto") { | 8 proto_library("stability_report_proto") { |
| 9 sources = [ | 9 sources = [ |
| 10 "stability_report.proto", | 10 "stability_report.proto", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "//third_party/crashpad/crashpad/client", | 56 "//third_party/crashpad/crashpad/client", |
| 57 "//third_party/crashpad/crashpad/minidump", | 57 "//third_party/crashpad/crashpad/minidump", |
| 58 "//third_party/crashpad/crashpad/util", | 58 "//third_party/crashpad/crashpad/util", |
| 59 ] | 59 ] |
| 60 } | 60 } |
| 61 | 61 |
| 62 static_library("postmortem_report_collector") { | 62 static_library("postmortem_report_collector") { |
| 63 sources = [ | 63 sources = [ |
| 64 "postmortem_report_collector.cc", | 64 "postmortem_report_collector.cc", |
| 65 "postmortem_report_collector.h", | 65 "postmortem_report_collector.h", |
| 66 "postmortem_report_extractor.cc", |
| 67 "postmortem_report_extractor.h", |
| 66 ] | 68 ] |
| 67 deps = [ | 69 deps = [ |
| 68 ":postmortem_minidump_writer", | 70 ":postmortem_minidump_writer", |
| 69 ":stability_data", | 71 ":stability_data", |
| 70 ":stability_report_proto", | 72 ":stability_report_proto", |
| 71 "//base", | 73 "//base", |
| 72 "//components/variations", | 74 "//components/variations", |
| 73 "//third_party/crashpad/crashpad/client", | 75 "//third_party/crashpad/crashpad/client", |
| 74 "//third_party/crashpad/crashpad/util", | 76 "//third_party/crashpad/crashpad/util", |
| 75 ] | 77 ] |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 executable("dump_postmortem") { | 134 executable("dump_postmortem") { |
| 133 sources = [ | 135 sources = [ |
| 134 "dump_postmortem_minidump_main_win.cc", | 136 "dump_postmortem_minidump_main_win.cc", |
| 135 ] | 137 ] |
| 136 deps = [ | 138 deps = [ |
| 137 ":stability_report_proto", | 139 ":stability_report_proto", |
| 138 "//base", | 140 "//base", |
| 139 ] | 141 ] |
| 140 } | 142 } |
| 141 } | 143 } |
| OLD | NEW |