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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
87 "features.h", | 87 "features.h", |
88 "stability_data_names.cc", | 88 "stability_data_names.cc", |
89 "stability_data_names.h", | 89 "stability_data_names.h", |
90 "stability_debugging.cc", | 90 "stability_debugging.cc", |
91 "stability_debugging.h", | 91 "stability_debugging.h", |
92 "stability_paths.cc", | 92 "stability_paths.cc", |
93 "stability_paths.h", | 93 "stability_paths.h", |
94 ] | 94 ] |
95 deps = [ | 95 deps = [ |
96 "//base", | 96 "//base", |
97 "//third_party/crashpad/crashpad/compat", | |
98 "//third_party/crashpad/crashpad/util", | |
Mark Mentovai
2017/05/04 21:27:37
According to try server results, you’ll probably w
manzagop (departed)
2017/05/05 14:35:22
I folded the target inside the is_win.
Done.
| |
97 ] | 99 ] |
98 } | 100 } |
99 | 101 |
100 if (is_win) { | 102 if (is_win) { |
101 source_set("unit_tests") { | 103 source_set("unit_tests") { |
102 testonly = true | 104 testonly = true |
103 sources = [ | 105 sources = [ |
104 "endsession_watcher_window_win_unittest.cc", | 106 "endsession_watcher_window_win_unittest.cc", |
105 "exit_code_watcher_win_unittest.cc", | 107 "exit_code_watcher_win_unittest.cc", |
106 "postmortem_minidump_writer_win_unittest.cc", | 108 "postmortem_minidump_writer_win_unittest.cc", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
146 executable("fetch_system_session_events") { | 148 executable("fetch_system_session_events") { |
147 sources = [ | 149 sources = [ |
148 "fetch_system_session_events_main_win.cc", | 150 "fetch_system_session_events_main_win.cc", |
149 ] | 151 ] |
150 deps = [ | 152 deps = [ |
151 ":postmortem_stability", | 153 ":postmortem_stability", |
152 "//base", | 154 "//base", |
153 ] | 155 ] |
154 } | 156 } |
155 } | 157 } |
OLD | NEW |