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 { | 5 { |
6 'defines': [ | 6 'defines': [ |
7 'FEATURE_ENABLE_SSL', | 7 'FEATURE_ENABLE_SSL', |
8 ], | 8 ], |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'sync_listen_notifications', | 11 'target_name': 'sync_listen_notifications', |
12 'type': 'executable', | 12 'type': 'executable', |
13 'sources': [ | 13 'sources': [ |
14 'sync_listen_notifications.cc', | 14 'sync_listen_notifications.cc', |
15 # We are directly including the sync_constants.cc and h files to avoid | 15 # We are directly including the sync_constants.cc and h files to avoid |
16 # pulling in browser.lib. | 16 # pulling in browser.lib. |
17 # TODO(akalin): Fix this. | 17 # TODO(akalin): Fix this. |
18 '<(DEPTH)/chrome/browser/sync/sync_constants.cc', | 18 '<(DEPTH)/chrome/browser/sync/sync_constants.cc', |
19 '<(DEPTH)/chrome/browser/sync/sync_constants.h', | 19 '<(DEPTH)/chrome/browser/sync/sync_constants.h', |
20 ], | 20 ], |
21 'dependencies': [ | 21 'dependencies': [ |
22 '<(DEPTH)/base/base.gyp:base', | 22 '<(DEPTH)/base/base.gyp:base', |
23 '<(DEPTH)/chrome/chrome.gyp:common_constants', | 23 '<(DEPTH)/chrome/chrome.gyp:common_constants', |
24 '<(DEPTH)/chrome/chrome.gyp:notifier', | |
25 '<(DEPTH)/chrome/chrome.gyp:sync_notifier', | 24 '<(DEPTH)/chrome/chrome.gyp:sync_notifier', |
| 25 '<(DEPTH)/jingle/jingle.gyp:notifier', |
26 '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', | 26 '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', |
27 ], | 27 ], |
28 }, | 28 }, |
29 ], | 29 ], |
30 } | 30 } |
31 | 31 |
32 # Local Variables: | 32 # Local Variables: |
33 # tab-width:2 | 33 # tab-width:2 |
34 # indent-tabs-mode:nil | 34 # indent-tabs-mode:nil |
35 # End: | 35 # End: |
36 # vim: set expandtab tabstop=2 shiftwidth=2: | 36 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |