| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "//base", | 68 "//base", |
| 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 static_library("stability") { | 74 static_library("stability") { |
| 75 sources = [ | 75 sources = [ |
| 76 "features.cc", | 76 "features.cc", |
| 77 "features.h", | 77 "features.h", |
| 78 "stability_debugging_win.cc", | 78 "stability_debugging.cc", |
| 79 "stability_debugging_win.h", | 79 "stability_debugging.h", |
| 80 ] | 80 ] |
| 81 deps = [ | 81 deps = [ |
| 82 "//base", | 82 "//base", |
| 83 ] | 83 ] |
| 84 } | 84 } |
| 85 | 85 |
| 86 source_set("unit_tests") { | 86 source_set("unit_tests") { |
| 87 testonly = true | 87 testonly = true |
| 88 sources = [ | 88 sources = [ |
| 89 "endsession_watcher_window_win_unittest.cc", | 89 "endsession_watcher_window_win_unittest.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 117 | 117 |
| 118 executable("dump_postmortem") { | 118 executable("dump_postmortem") { |
| 119 sources = [ | 119 sources = [ |
| 120 "dump_postmortem_minidump_main_win.cc", | 120 "dump_postmortem_minidump_main_win.cc", |
| 121 ] | 121 ] |
| 122 deps = [ | 122 deps = [ |
| 123 ":stability_report_proto", | 123 ":stability_report_proto", |
| 124 "//base", | 124 "//base", |
| 125 ] | 125 ] |
| 126 } | 126 } |
| OLD | NEW |