OLD | NEW |
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 # TODO(andrew): consider moving test_support to src/base/test. | 9 # TODO(andrew): consider moving test_support to src/base/test. |
10 { | 10 { |
11 'includes': [ | 11 'includes': [ |
12 '../build/common.gypi', | 12 '../build/common.gypi', |
13 ], | 13 ], |
14 'targets': [ | 14 'targets': [ |
15 { | 15 { |
16 'target_name': 'channel_transport', | 16 'target_name': 'channel_transport', |
17 'type': 'static_library', | 17 'type': 'static_library', |
18 'dependencies': [ | 18 'dependencies': [ |
19 '<(DEPTH)/testing/gtest.gyp:gtest', | 19 '<(DEPTH)/testing/gtest.gyp:gtest', |
20 '<(webrtc_root)/common.gyp:webrtc_common', | 20 '<(webrtc_root)/common.gyp:webrtc_common', |
21 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 21 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
22 ], | 22 ], |
23 'sources': [ | 23 'sources': [ |
24 'channel_transport/channel_transport.cc', | 24 'channel_transport/channel_transport.cc', |
25 'channel_transport/include/channel_transport.h', | 25 'channel_transport/channel_transport.h', |
26 'channel_transport/traffic_control_win.cc', | 26 'channel_transport/traffic_control_win.cc', |
27 'channel_transport/traffic_control_win.h', | 27 'channel_transport/traffic_control_win.h', |
28 'channel_transport/udp_socket_manager_posix.cc', | 28 'channel_transport/udp_socket_manager_posix.cc', |
29 'channel_transport/udp_socket_manager_posix.h', | 29 'channel_transport/udp_socket_manager_posix.h', |
30 'channel_transport/udp_socket_manager_wrapper.cc', | 30 'channel_transport/udp_socket_manager_wrapper.cc', |
31 'channel_transport/udp_socket_manager_wrapper.h', | 31 'channel_transport/udp_socket_manager_wrapper.h', |
32 'channel_transport/udp_socket_posix.cc', | 32 'channel_transport/udp_socket_posix.cc', |
33 'channel_transport/udp_socket_posix.h', | 33 'channel_transport/udp_socket_posix.h', |
34 'channel_transport/udp_socket_wrapper.cc', | 34 'channel_transport/udp_socket_wrapper.cc', |
35 'channel_transport/udp_socket_wrapper.h', | 35 'channel_transport/udp_socket_wrapper.h', |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 '../build/isolate.gypi', | 242 '../build/isolate.gypi', |
243 ], | 243 ], |
244 'sources': [ | 244 'sources': [ |
245 'test_support_unittests.isolate', | 245 'test_support_unittests.isolate', |
246 ], | 246 ], |
247 }, | 247 }, |
248 ], | 248 ], |
249 }], | 249 }], |
250 ], | 250 ], |
251 } | 251 } |
OLD | NEW |