| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 static_library("postmortem_report_collector") { | 61 static_library("postmortem_report_collector") { |
| 62 sources = [ | 62 sources = [ |
| 63 "postmortem_report_collector.cc", | 63 "postmortem_report_collector.cc", |
| 64 "postmortem_report_collector.h", | 64 "postmortem_report_collector.h", |
| 65 ] | 65 ] |
| 66 deps = [ | 66 deps = [ |
| 67 ":postmortem_minidump_writer", | 67 ":postmortem_minidump_writer", |
| 68 ":stability_report_proto", | 68 ":stability_report_proto", |
| 69 "//base", | 69 "//base", |
| 70 "//components/variations", |
| 70 "//third_party/crashpad/crashpad/client", | 71 "//third_party/crashpad/crashpad/client", |
| 71 "//third_party/crashpad/crashpad/util", | 72 "//third_party/crashpad/crashpad/util", |
| 72 ] | 73 ] |
| 73 } | 74 } |
| 74 } | 75 } |
| 75 | 76 |
| 76 static_library("stability") { | 77 static_library("stability") { |
| 77 sources = [ | 78 sources = [ |
| 78 "features.cc", | 79 "features.cc", |
| 79 "features.h", | 80 "features.h", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 executable("dump_postmortem") { | 129 executable("dump_postmortem") { |
| 129 sources = [ | 130 sources = [ |
| 130 "dump_postmortem_minidump_main_win.cc", | 131 "dump_postmortem_minidump_main_win.cc", |
| 131 ] | 132 ] |
| 132 deps = [ | 133 deps = [ |
| 133 ":stability_report_proto", | 134 ":stability_report_proto", |
| 134 "//base", | 135 "//base", |
| 135 ] | 136 ] |
| 136 } | 137 } |
| 137 } | 138 } |
| OLD | NEW |