| 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_constants.cc', |
| 15 'sync_constants.h', |
| 14 'sync_listen_notifications.cc', | 16 'sync_listen_notifications.cc', |
| 15 # We are directly including the sync_constants.cc and h files to avoid | 17 # We are directly including the sync_constants.cc and h files to avoid |
| 16 # pulling in browser.lib. | 18 # pulling in browser.lib. |
| 17 # TODO(akalin): Fix this. | 19 # TODO(akalin): Fix this. |
| 18 '<(DEPTH)/chrome/browser/sync/sync_constants.cc', | 20 '<(DEPTH)/chrome/browser/sync/sync_constants.cc', |
| 19 '<(DEPTH)/chrome/browser/sync/sync_constants.h', | 21 '<(DEPTH)/chrome/browser/sync/sync_constants.h', |
| 20 ], | 22 ], |
| 21 'dependencies': [ | 23 'dependencies': [ |
| 22 '<(DEPTH)/base/base.gyp:base', | 24 '<(DEPTH)/base/base.gyp:base', |
| 23 '<(DEPTH)/chrome/chrome.gyp:notifier', | 25 '<(DEPTH)/chrome/chrome.gyp:notifier', |
| 24 '<(DEPTH)/third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinval
idation', | 26 '<(DEPTH)/third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinval
idation', |
| 25 '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', | 27 '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', |
| 26 ], | 28 ], |
| 27 }, | 29 }, |
| 28 ], | 30 ], |
| 29 } | 31 } |
| 30 | 32 |
| 31 # Local Variables: | 33 # Local Variables: |
| 32 # tab-width:2 | 34 # tab-width:2 |
| 33 # indent-tabs-mode:nil | 35 # indent-tabs-mode:nil |
| 34 # End: | 36 # End: |
| 35 # vim: set expandtab tabstop=2 shiftwidth=2: | 37 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |