| 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 source_set("browser_watcher") { | 5 source_set("browser_watcher") { |
| 6 # This is a separate lib to minimize the dependencies for its | 6 # This is a separate lib to minimize the dependencies for its |
| 7 # hosting binary "chrome_watcher.dll". | 7 # hosting binary "chrome_watcher.dll". |
| 8 sources = [ | 8 sources = [ |
| 9 "endsession_watcher_window_win.cc", | 9 "endsession_watcher_window_win.cc", |
| 10 "endsession_watcher_window_win.h", | 10 "endsession_watcher_window_win.h", |
| 11 "exit_code_watcher_win.cc", | 11 "exit_code_watcher_win.cc", |
| 12 "exit_code_watcher_win.h", | 12 "exit_code_watcher_win.h", |
| 13 "exit_funnel_win.cc", | 13 "exit_funnel_win.cc", |
| 14 "exit_funnel_win.h", | 14 "exit_funnel_win.h", |
| 15 "window_hang_monitor_win.cc", | 15 "window_hang_monitor_win.cc", |
| 16 "window_hang_monitor_win.h", | 16 "window_hang_monitor_win.h", |
| 17 ] | 17 ] |
| 18 deps = [ | 18 deps = [ |
| 19 "//base", | 19 "//base", |
| 20 ] | 20 ] |
| 21 } | 21 } |
| 22 | 22 |
| 23 source_set("browser_watcher_client") { | 23 source_set("browser_watcher_client") { |
| 24 sources = [ | 24 sources = [ |
| 25 "crash_reporting_metrics_win.cc", | |
| 26 "crash_reporting_metrics_win.h", | |
| 27 "watcher_client_win.cc", | 25 "watcher_client_win.cc", |
| 28 "watcher_client_win.h", | 26 "watcher_client_win.h", |
| 29 "watcher_metrics_provider_win.cc", | 27 "watcher_metrics_provider_win.cc", |
| 30 "watcher_metrics_provider_win.h", | 28 "watcher_metrics_provider_win.h", |
| 31 ] | 29 ] |
| 32 deps = [ | 30 deps = [ |
| 33 "//base", | 31 "//base", |
| 34 "//components/metrics", | 32 "//components/metrics", |
| 35 ] | 33 ] |
| 36 } | 34 } |
| (...skipping 10 matching lines...) Expand all Loading... |
| 47 ] | 45 ] |
| 48 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 46 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 49 deps = [ | 47 deps = [ |
| 50 ":browser_watcher", | 48 ":browser_watcher", |
| 51 ":browser_watcher_client", | 49 ":browser_watcher_client", |
| 52 "//base", | 50 "//base", |
| 53 "//base/test:test_support", | 51 "//base/test:test_support", |
| 54 "//testing/gtest", | 52 "//testing/gtest", |
| 55 ] | 53 ] |
| 56 } | 54 } |
| OLD | NEW |