| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "features.cc", | 76 "features.cc", |
| 77 "features.h", | 77 "features.h", |
| 78 "stability_debugging_win.cc", | 78 "stability_debugging_win.cc", |
| 79 "stability_debugging_win.h", | 79 "stability_debugging_win.h", |
| 80 ] | 80 ] |
| 81 deps = [ | 81 deps = [ |
| 82 "//base", | 82 "//base", |
| 83 ] | 83 ] |
| 84 } | 84 } |
| 85 | 85 |
| 86 static_library("stability_data") { |
| 87 sources = [ |
| 88 "stability_data_names.cc", |
| 89 "stability_data_names.h", |
| 90 ] |
| 91 } |
| 92 |
| 86 source_set("unit_tests") { | 93 source_set("unit_tests") { |
| 87 testonly = true | 94 testonly = true |
| 88 sources = [ | 95 sources = [ |
| 89 "endsession_watcher_window_win_unittest.cc", | 96 "endsession_watcher_window_win_unittest.cc", |
| 90 "exit_code_watcher_win_unittest.cc", | 97 "exit_code_watcher_win_unittest.cc", |
| 91 "postmortem_minidump_writer_win_unittest.cc", | 98 "postmortem_minidump_writer_win_unittest.cc", |
| 92 "postmortem_report_collector_unittest.cc", | 99 "postmortem_report_collector_unittest.cc", |
| 93 "watcher_client_win_unittest.cc", | 100 "watcher_client_win_unittest.cc", |
| 94 "watcher_metrics_provider_win_unittest.cc", | 101 "watcher_metrics_provider_win_unittest.cc", |
| 95 "window_hang_monitor_win_unittest.cc", | 102 "window_hang_monitor_win_unittest.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 117 | 124 |
| 118 executable("dump_postmortem") { | 125 executable("dump_postmortem") { |
| 119 sources = [ | 126 sources = [ |
| 120 "dump_postmortem_minidump_main_win.cc", | 127 "dump_postmortem_minidump_main_win.cc", |
| 121 ] | 128 ] |
| 122 deps = [ | 129 deps = [ |
| 123 ":stability_report_proto", | 130 ":stability_report_proto", |
| 124 "//base", | 131 "//base", |
| 125 ] | 132 ] |
| 126 } | 133 } |
| OLD | NEW |