| 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 |
| 11 # hosting binary "chrome_watcher.dll". | 11 # hosting binary "chrome_watcher.dll". |
| 12 'target_name': 'browser_watcher', | 12 'target_name': 'browser_watcher', |
| 13 'type': 'static_library', | 13 'type': 'static_library', |
| 14 'sources': [ | 14 'sources': [ |
| 15 'browser_watcher/endsession_watcher_window_win.cc', |
| 16 'browser_watcher/endsession_watcher_window_win.h', |
| 15 'browser_watcher/exit_code_watcher_win.cc', | 17 'browser_watcher/exit_code_watcher_win.cc', |
| 16 'browser_watcher/exit_code_watcher_win.h', | 18 'browser_watcher/exit_code_watcher_win.h', |
| 17 'browser_watcher/exit_funnel_win.cc', | 19 'browser_watcher/exit_funnel_win.cc', |
| 18 'browser_watcher/exit_funnel_win.h', | 20 'browser_watcher/exit_funnel_win.h', |
| 19 ], | 21 ], |
| 20 'dependencies': [ | 22 'dependencies': [ |
| 21 '../base/base.gyp:base', | 23 '../base/base.gyp:base', |
| 22 ], | 24 ], |
| 23 }, | 25 }, |
| 24 { | 26 { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 36 'dependencies': [ | 38 'dependencies': [ |
| 37 'browser_watcher', | 39 'browser_watcher', |
| 38 '../base/base.gyp:base', | 40 '../base/base.gyp:base', |
| 39 ], | 41 ], |
| 40 }, | 42 }, |
| 41 ], | 43 ], |
| 42 } | 44 } |
| 43 ], | 45 ], |
| 44 ], | 46 ], |
| 45 } | 47 } |
| OLD | NEW |