OLD | NEW |
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 'variables': { | 5 'variables': { |
6 'libsctp_target_type%': 'static_library', | 6 'libsctp_target_type%': 'static_library', |
7 }, | 7 }, |
8 'target_defaults': { | 8 'target_defaults': { |
9 'defines': [ | 9 'defines': [ |
10 'SCTP_PROCESS_LEVEL_LOCKS', | 10 'SCTP_PROCESS_LEVEL_LOCKS', |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 'usrsctplib/user_inpcb.h', | 108 'usrsctplib/user_inpcb.h', |
109 'usrsctplib/user_ip6_var.h', | 109 'usrsctplib/user_ip6_var.h', |
110 'usrsctplib/user_ip_icmp.h', | 110 'usrsctplib/user_ip_icmp.h', |
111 'usrsctplib/user_malloc.h', | 111 'usrsctplib/user_malloc.h', |
112 'usrsctplib/user_mbuf.c', | 112 'usrsctplib/user_mbuf.c', |
113 'usrsctplib/user_mbuf.h', | 113 'usrsctplib/user_mbuf.h', |
114 'usrsctplib/user_queue.h', | 114 'usrsctplib/user_queue.h', |
115 'usrsctplib/user_recv_thread.c', | 115 'usrsctplib/user_recv_thread.c', |
116 'usrsctplib/user_recv_thread.h', | 116 'usrsctplib/user_recv_thread.h', |
117 'usrsctplib/user_route.h', | 117 'usrsctplib/user_route.h', |
118 'usrsctplib/user_sctp_timer_iterate.c', | |
119 'usrsctplib/user_socket.c', | 118 'usrsctplib/user_socket.c', |
120 'usrsctplib/user_socketvar.h', | 119 'usrsctplib/user_socketvar.h', |
121 'usrsctplib/user_uma.h', | 120 'usrsctplib/user_uma.h', |
122 'usrsctplib/usrsctp.h' | 121 'usrsctplib/usrsctp.h' |
123 ], # sources | 122 ], # sources |
124 'conditions': [ | 123 'conditions': [ |
125 ['OS=="linux" or OS=="android"', { | 124 ['OS=="linux" or OS=="android"', { |
126 'defines': [ | 125 'defines': [ |
127 '__Userspace_os_Linux', | 126 '__Userspace_os_Linux', |
128 ], | 127 ], |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'msvs_disabled_warnings': [ 4002, 4013, 4018, 4133, 4267, 4313, 4700 ]
, | 165 'msvs_disabled_warnings': [ 4002, 4013, 4018, 4133, 4267, 4313, 4700 ]
, |
167 }, { # OS != "win", | 166 }, { # OS != "win", |
168 'defines': [ | 167 'defines': [ |
169 'NON_WINDOWS_DEFINE', | 168 'NON_WINDOWS_DEFINE', |
170 ], | 169 ], |
171 }], | 170 }], |
172 ], # conditions | 171 ], # conditions |
173 }, # target usrsctp | 172 }, # target usrsctp |
174 ], # targets | 173 ], # targets |
175 } | 174 } |
OLD | NEW |