| OLD | NEW |
| 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 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 { | 5 { |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 ['OS=="win"', { | 7 ['OS=="win"', { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 # This is a separate lib to minimize the dependencies for its | 10 # This is a separate lib to minimize the dependencies for its |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 ], | 23 ], |
| 24 'dependencies': [ | 24 'dependencies': [ |
| 25 '../base/base.gyp:base', | 25 '../base/base.gyp:base', |
| 26 ], | 26 ], |
| 27 }, | 27 }, |
| 28 { | 28 { |
| 29 # Users of the watcher link this target. | 29 # Users of the watcher link this target. |
| 30 'target_name': 'browser_watcher_client', | 30 'target_name': 'browser_watcher_client', |
| 31 'type': 'static_library', | 31 'type': 'static_library', |
| 32 'sources': [ | 32 'sources': [ |
| 33 'browser_watcher/crash_reporting_metrics_win.cc', | |
| 34 'browser_watcher/crash_reporting_metrics_win.h', | |
| 35 'browser_watcher/watcher_client_win.cc', | 33 'browser_watcher/watcher_client_win.cc', |
| 36 'browser_watcher/watcher_client_win.h', | 34 'browser_watcher/watcher_client_win.h', |
| 37 'browser_watcher/watcher_metrics_provider_win.cc', | 35 'browser_watcher/watcher_metrics_provider_win.cc', |
| 38 'browser_watcher/watcher_metrics_provider_win.h', | 36 'browser_watcher/watcher_metrics_provider_win.h', |
| 39 ], | 37 ], |
| 40 'dependencies': [ | 38 'dependencies': [ |
| 41 '../base/base.gyp:base', | 39 '../base/base.gyp:base', |
| 42 ], | 40 ], |
| 43 }, | 41 }, |
| 44 ], | 42 ], |
| 45 } | 43 } |
| 46 ], | 44 ], |
| 47 ], | 45 ], |
| 48 } | 46 } |
| OLD | NEW |