Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(787)

Side by Side Diff: jingle/jingle.gyp

Issue 9455070: Remove the dependency to ws2_32.dll from talk_base::ThreadManager and talk_base::Thread. (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, # variables 8 }, # variables
9 'targets': [ 9 'targets': [
10 # A library of various utils for integration with libjingle. 10 # A library of various utils for integration with libjingle.
11 { 11 {
12 'target_name': 'jingle_glue', 12 'target_name': 'jingle_glue',
13 'type': 'static_library', 13 'type': 'static_library',
14 'sources': [ 14 'sources': [
15 'glue/channel_socket_adapter.cc', 15 'glue/channel_socket_adapter.cc',
16 'glue/channel_socket_adapter.h', 16 'glue/channel_socket_adapter.h',
17 'glue/dummy_chrome_socketserver.h',
17 'glue/pseudotcp_adapter.cc', 18 'glue/pseudotcp_adapter.cc',
18 'glue/pseudotcp_adapter.h', 19 'glue/pseudotcp_adapter.h',
19 'glue/thread_wrapper.cc', 20 'glue/thread_wrapper.cc',
20 'glue/thread_wrapper.h', 21 'glue/thread_wrapper.h',
21 'glue/utils.cc', 22 'glue/utils.cc',
22 'glue/utils.h', 23 'glue/utils.h',
23 ], 24 ],
24 'dependencies': [ 25 'dependencies': [
25 '../base/base.gyp:base', 26 '../base/base.gyp:base',
26 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 27 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 '../base/base.gyp:test_support_base', 198 '../base/base.gyp:test_support_base',
198 '../net/net.gyp:net', 199 '../net/net.gyp:net',
199 '../net/net.gyp:net_test_support', 200 '../net/net.gyp:net_test_support',
200 '../testing/gmock.gyp:gmock', 201 '../testing/gmock.gyp:gmock',
201 '../testing/gtest.gyp:gtest', 202 '../testing/gtest.gyp:gtest',
202 '../third_party/libjingle/libjingle.gyp:libjingle', 203 '../third_party/libjingle/libjingle.gyp:libjingle',
203 ], 204 ],
204 }, 205 },
205 ], 206 ],
206 } 207 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698