diff options
author | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-16 09:35:30 +0000 |
---|---|---|
committer | akalin@chromium.org <akalin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-16 09:35:30 +0000 |
commit | 3d6ddbadc0c670fa3db69f7173a67da09f9f1a12 (patch) | |
tree | aa1cc86f6426f6607360670e21023969f697f16d /chrome/browser/sync/tools/sync_tools.gyp | |
parent | 387a6ceae16e24b7ed19dc143f97c3378ca343df (diff) | |
download | chromium_src-3d6ddbadc0c670fa3db69f7173a67da09f9f1a12.zip chromium_src-3d6ddbadc0c670fa3db69f7173a67da09f9f1a12.tar.gz chromium_src-3d6ddbadc0c670fa3db69f7173a67da09f9f1a12.tar.bz2 |
Moved ChromeAsyncSocket to jingle/notifier/base.
Fixed some signed/unsigned warnings.
BUG=45612
TEST=existing unittests
Review URL: http://codereview.chromium.org/2857039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52638 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/tools/sync_tools.gyp')
-rw-r--r-- | chrome/browser/sync/tools/sync_tools.gyp | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/chrome/browser/sync/tools/sync_tools.gyp b/chrome/browser/sync/tools/sync_tools.gyp index 0205024..18d163c 100644 --- a/chrome/browser/sync/tools/sync_tools.gyp +++ b/chrome/browser/sync/tools/sync_tools.gyp @@ -5,22 +5,6 @@ { 'targets': [ { - 'target_name': 'chrome_async_socket', - 'type': '<(library)', - 'sources': [ - 'chrome_async_socket.cc', - 'chrome_async_socket.h', - ], - 'dependencies': [ - '<(DEPTH)/base/base.gyp:base', - '<(DEPTH)/net/net.gyp:net', - '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', - ], - 'export_dependent_settings': [ - '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', - ], - }, - { 'target_name': 'sync_listen_notifications', 'type': 'executable', 'sources': [ @@ -32,7 +16,6 @@ '<(DEPTH)/chrome/browser/sync/sync_constants.h', ], 'dependencies': [ - 'chrome_async_socket', '<(DEPTH)/base/base.gyp:base', '<(DEPTH)/chrome/chrome.gyp:common_constants', '<(DEPTH)/chrome/chrome.gyp:sync_notifier', @@ -40,35 +23,6 @@ '<(DEPTH)/third_party/libjingle/libjingle.gyp:libjingle', ], }, - { - 'target_name': 'chrome_async_socket_unit_tests', - 'type': 'executable', - 'sources': [ - # TODO(akalin): Write our own test suite and runner. - '<(DEPTH)/base/test/run_all_unittests.cc', - '<(DEPTH)/base/test/test_suite.h', - 'chrome_async_socket_unittest.cc', - ], - 'dependencies': [ - 'chrome_async_socket', - '<(DEPTH)/base/base.gyp:base', - '<(DEPTH)/net/net.gyp:net', - '<(DEPTH)/net/net.gyp:net_test_support', - '<(DEPTH)/testing/gtest.gyp:gtest', - ], - # TODO(akalin): Remove this once we have our own test suite and - # runner. - 'conditions': [ - ['OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris"', { - 'dependencies': [ - # Needed to handle the #include chain: - # base/test/test_suite.h - # gtk/gtk.h - '<(DEPTH)/build/linux/system.gyp:gtk', - ], - }], - ], - }, ], } |