| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 source_set("unit_tests") { | 121 source_set("unit_tests") { |
| 122 testonly = true | 122 testonly = true |
| 123 sources = [ | 123 sources = [ |
| 124 "endsession_watcher_window_win_unittest.cc", | 124 "endsession_watcher_window_win_unittest.cc", |
| 125 "exit_code_watcher_win_unittest.cc", | 125 "exit_code_watcher_win_unittest.cc", |
| 126 "postmortem_minidump_writer_win_unittest.cc", | 126 "postmortem_minidump_writer_win_unittest.cc", |
| 127 "postmortem_report_collector_unittest.cc", | 127 "postmortem_report_collector_unittest.cc", |
| 128 "stability_debugging_win_unittest.cc", | 128 "stability_debugging_win_unittest.cc", |
| 129 "stability_paths_unittest.cc", | 129 "stability_paths_unittest.cc", |
| 130 "stability_report_extractor_unittest.cc", |
| 130 "system_session_analyzer_win_unittest.cc", | 131 "system_session_analyzer_win_unittest.cc", |
| 131 "watcher_client_win_unittest.cc", | 132 "watcher_client_win_unittest.cc", |
| 132 "watcher_metrics_provider_win_unittest.cc", | 133 "watcher_metrics_provider_win_unittest.cc", |
| 133 "window_hang_monitor_win_unittest.cc", | 134 "window_hang_monitor_win_unittest.cc", |
| 134 ] | 135 ] |
| 135 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 136 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 136 deps = [ | 137 deps = [ |
| 137 ":browser_watcher", | 138 ":browser_watcher", |
| 138 ":browser_watcher_client", | 139 ":browser_watcher_client", |
| 139 ":postmortem_stability", | 140 ":postmortem_stability", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 166 executable("fetch_system_session_events") { | 167 executable("fetch_system_session_events") { |
| 167 sources = [ | 168 sources = [ |
| 168 "fetch_system_session_events_main_win.cc", | 169 "fetch_system_session_events_main_win.cc", |
| 169 ] | 170 ] |
| 170 deps = [ | 171 deps = [ |
| 171 ":postmortem_stability", | 172 ":postmortem_stability", |
| 172 "//base", | 173 "//base", |
| 173 ] | 174 ] |
| 174 } | 175 } |
| 175 } | 176 } |
| OLD | NEW |