OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 # TODO(akalin): Reference this file from all.gyp so it's always built. | |
6 { | 5 { |
7 'defines': [ | 6 'defines': [ |
8 'FEATURE_ENABLE_SSL', | 7 'FEATURE_ENABLE_SSL', |
9 ], | 8 ], |
10 'targets': [ | 9 'targets': [ |
11 { | 10 { |
12 'target_name': 'sync_listen_notifications', | 11 'target_name': 'sync_listen_notifications', |
13 'type': 'executable', | 12 'type': 'executable', |
14 'sources': [ | 13 'sources': [ |
15 'sync_listen_notifications.cc', | 14 'sync_listen_notifications.cc', |
16 ], | 15 ], |
17 'dependencies': [ | 16 'dependencies': [ |
18 '<(DEPTH)/base/base.gyp:base', | 17 '<(DEPTH)/base/base.gyp:base', |
19 '<(DEPTH)/chrome/chrome.gyp:notifier', | 18 '<(DEPTH)/chrome/chrome.gyp:notifier', |
20 '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', | 19 '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', |
21 ], | 20 ], |
| 21 # TODO(akalin): Figure out the right place to put this. |
| 22 'conditions': [ |
| 23 ['OS=="win"', { |
| 24 'link_settings': { |
| 25 'libraries': [ |
| 26 '-lsecur32.lib', |
| 27 '-lcrypt32.lib', |
| 28 ], |
| 29 }, |
| 30 },], |
| 31 ], |
22 }, | 32 }, |
23 ], | 33 ], |
24 } | 34 } |
25 | 35 |
26 # Local Variables: | 36 # Local Variables: |
27 # tab-width:2 | 37 # tab-width:2 |
28 # indent-tabs-mode:nil | 38 # indent-tabs-mode:nil |
29 # End: | 39 # End: |
30 # vim: set expandtab tabstop=2 shiftwidth=2: | 40 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |