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

Side by Side Diff: jingle/jingle.gyp

Issue 7051014: Globally replace <(library) with static_library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « ipc/ipc.gypi ('k') | media/media.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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': '<(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 '../third_party/libjingle/libjingle.gyp:libjingle', 26 '../third_party/libjingle/libjingle.gyp:libjingle',
27 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 27 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
28 ], 28 ],
29 'export_dependent_settings': [ 29 'export_dependent_settings': [
30 '../third_party/libjingle/libjingle.gyp:libjingle', 30 '../third_party/libjingle/libjingle.gyp:libjingle',
31 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 31 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
32 ], 32 ],
33 }, 33 },
34 # A library for sending and receiving peer-issued notifications. 34 # A library for sending and receiving peer-issued notifications.
35 # 35 #
36 # TODO(akalin): Separate out the XMPP stuff from this library into 36 # TODO(akalin): Separate out the XMPP stuff from this library into
37 # its own library. 37 # its own library.
38 { 38 {
39 'target_name': 'notifier', 39 'target_name': 'notifier',
40 'type': '<(library)', 40 'type': 'static_library',
41 'sources': [ 41 'sources': [
42 'notifier/base/chrome_async_socket.cc', 42 'notifier/base/chrome_async_socket.cc',
43 'notifier/base/chrome_async_socket.h', 43 'notifier/base/chrome_async_socket.h',
44 'notifier/base/const_communicator.h', 44 'notifier/base/const_communicator.h',
45 'notifier/base/fake_ssl_client_socket.cc', 45 'notifier/base/fake_ssl_client_socket.cc',
46 'notifier/base/fake_ssl_client_socket.h', 46 'notifier/base/fake_ssl_client_socket.h',
47 'notifier/base/gaia_token_pre_xmpp_auth.cc', 47 'notifier/base/gaia_token_pre_xmpp_auth.cc',
48 'notifier/base/gaia_token_pre_xmpp_auth.h', 48 'notifier/base/gaia_token_pre_xmpp_auth.h',
49 'notifier/base/notification_method.h', 49 'notifier/base/notification_method.h',
50 'notifier/base/notification_method.cc', 50 'notifier/base/notification_method.cc',
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 'conditions': [ 112 'conditions': [
113 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { 113 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
114 'dependencies': [ 114 'dependencies': [
115 '../build/linux/system.gyp:gtk' 115 '../build/linux/system.gyp:gtk'
116 ], 116 ],
117 }], 117 }],
118 ], 118 ],
119 }, 119 },
120 { 120 {
121 'target_name': 'notifier_test_util', 121 'target_name': 'notifier_test_util',
122 'type': '<(library)', 122 'type': 'static_library',
123 'sources': [ 123 'sources': [
124 'notifier/base/fake_base_task.cc', 124 'notifier/base/fake_base_task.cc',
125 'notifier/base/fake_base_task.h', 125 'notifier/base/fake_base_task.h',
126 ], 126 ],
127 'dependencies': [ 127 'dependencies': [
128 'notifier', 128 'notifier',
129 '../base/base.gyp:base', 129 '../base/base.gyp:base',
130 '../testing/gmock.gyp:gmock', 130 '../testing/gmock.gyp:gmock',
131 ], 131 ],
132 }, 132 },
133 { 133 {
134 'target_name': 'jingle_glue_test_util', 134 'target_name': 'jingle_glue_test_util',
135 'type': '<(library)', 135 'type': 'static_library',
136 'sources': [ 136 'sources': [
137 'glue/fake_network_manager.cc', 137 'glue/fake_network_manager.cc',
138 'glue/fake_network_manager.h', 138 'glue/fake_network_manager.h',
139 'glue/fake_socket_factory.cc', 139 'glue/fake_socket_factory.cc',
140 'glue/fake_socket_factory.h', 140 'glue/fake_socket_factory.h',
141 ], 141 ],
142 'dependencies': [ 142 'dependencies': [
143 'jingle_glue', 143 'jingle_glue',
144 '../base/base.gyp:base', 144 '../base/base.gyp:base',
145 ], 145 ],
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 ], 186 ],
187 }, 187 },
188 ], 188 ],
189 } 189 }
190 190
191 # Local Variables: 191 # Local Variables:
192 # tab-width:2 192 # tab-width:2
193 # indent-tabs-mode:nil 193 # indent-tabs-mode:nil
194 # End: 194 # End:
195 # vim: set expandtab tabstop=2 shiftwidth=2: 195 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « ipc/ipc.gypi ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698