summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/tools/sync_tools.gyp
diff options
context:
space:
mode:
authorakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-23 23:11:37 +0000
committerakalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-23 23:11:37 +0000
commit1eb71d721dee36e8f386bdc0900f915a0813981a (patch)
treeb874d94409c123983f0c00f741d1fba002049b7d /chrome/browser/sync/tools/sync_tools.gyp
parentde3c853cab4d12e87016b2a48efdf15bcd567fec (diff)
downloadchromium_src-1eb71d721dee36e8f386bdc0900f915a0813981a.zip
chromium_src-1eb71d721dee36e8f386bdc0900f915a0813981a.tar.gz
chromium_src-1eb71d721dee36e8f386bdc0900f915a0813981a.tar.bz2
Added sync_listen_notifications, a utility that connects to an XMPP
server and listens for sync notifications. It is also useful for debugging libjingle issues. BUG=none TEST=compiled and ran on all platforms Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=45484 Review URL: http://codereview.chromium.org/1712002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/tools/sync_tools.gyp')
-rw-r--r--chrome/browser/sync/tools/sync_tools.gyp30
1 files changed, 30 insertions, 0 deletions
diff --git a/chrome/browser/sync/tools/sync_tools.gyp b/chrome/browser/sync/tools/sync_tools.gyp
new file mode 100644
index 0000000..6759248
--- /dev/null
+++ b/chrome/browser/sync/tools/sync_tools.gyp
@@ -0,0 +1,30 @@
+# Copyright (c) 2010 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# TODO(akalin): Reference this file from all.gyp so it's always built.
+{
+ 'defines': [
+ 'FEATURE_ENABLE_SSL',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'sync_listen_notifications',
+ 'type': 'executable',
+ 'sources': [
+ 'sync_listen_notifications.cc',
+ ],
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/chrome/chrome.gyp:notifier',
+ '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle',
+ ],
+ },
+ ],
+}
+
+# Local Variables:
+# tab-width:2
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=2 shiftwidth=2: