OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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/pseudotcp_adapter.cc', | 17 'glue/pseudotcp_adapter.cc', |
18 'glue/pseudotcp_adapter.h', | 18 'glue/pseudotcp_adapter.h', |
19 'glue/thread_wrapper.cc', | 19 'glue/thread_wrapper.cc', |
20 'glue/thread_wrapper.h', | 20 'glue/thread_wrapper.h', |
21 'glue/utils.cc', | 21 'glue/utils.cc', |
22 'glue/utils.h', | 22 'glue/utils.h', |
23 ], | 23 ], |
24 'dependencies': [ | 24 'dependencies': [ |
25 '../base/base.gyp:base', | 25 '../base/base.gyp:base', |
| 26 '../net/net.gyp:net', |
26 '../third_party/libjingle/libjingle.gyp:libjingle', | 27 '../third_party/libjingle/libjingle.gyp:libjingle', |
27 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 28 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
28 ], | 29 ], |
29 'export_dependent_settings': [ | 30 'export_dependent_settings': [ |
30 '../third_party/libjingle/libjingle.gyp:libjingle', | 31 '../third_party/libjingle/libjingle.gyp:libjingle', |
31 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', | 32 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', |
32 ], | 33 ], |
33 }, | 34 }, |
34 # A library for sending and receiving peer-issued notifications. | 35 # A library for sending and receiving peer-issued notifications. |
35 # | 36 # |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 ], | 187 ], |
187 }, | 188 }, |
188 ], | 189 ], |
189 } | 190 } |
190 | 191 |
191 # Local Variables: | 192 # Local Variables: |
192 # tab-width:2 | 193 # tab-width:2 |
193 # indent-tabs-mode:nil | 194 # indent-tabs-mode:nil |
194 # End: | 195 # End: |
195 # vim: set expandtab tabstop=2 shiftwidth=2: | 196 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |