OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'includes': [ | 5 'includes': [ |
6 '../../native_client/build/untrusted.gypi', | 6 '../../native_client/build/untrusted.gypi', |
7 ], | 7 ], |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'usrsctplib_nacl', | 10 'target_name': 'usrsctplib_nacl', |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 'usrsctplib/user_inpcb.h', | 72 'usrsctplib/user_inpcb.h', |
73 'usrsctplib/user_ip6_var.h', | 73 'usrsctplib/user_ip6_var.h', |
74 'usrsctplib/user_ip_icmp.h', | 74 'usrsctplib/user_ip_icmp.h', |
75 'usrsctplib/user_malloc.h', | 75 'usrsctplib/user_malloc.h', |
76 'usrsctplib/user_mbuf.c', | 76 'usrsctplib/user_mbuf.c', |
77 'usrsctplib/user_mbuf.h', | 77 'usrsctplib/user_mbuf.h', |
78 'usrsctplib/user_queue.h', | 78 'usrsctplib/user_queue.h', |
79 'usrsctplib/user_recv_thread.c', | 79 'usrsctplib/user_recv_thread.c', |
80 'usrsctplib/user_recv_thread.h', | 80 'usrsctplib/user_recv_thread.h', |
81 'usrsctplib/user_route.h', | 81 'usrsctplib/user_route.h', |
82 'usrsctplib/user_sctp_timer_iterate.c', | |
83 'usrsctplib/user_socket.c', | 82 'usrsctplib/user_socket.c', |
84 'usrsctplib/user_socketvar.h', | 83 'usrsctplib/user_socketvar.h', |
85 'usrsctplib/user_uma.h', | 84 'usrsctplib/user_uma.h', |
86 'usrsctplib/usrsctp.h' | 85 'usrsctplib/usrsctp.h' |
87 ], # sources | 86 ], # sources |
88 'defines': [ | 87 'defines': [ |
89 'SCTP_USE_OPENSSL_SHA1', | 88 'SCTP_USE_OPENSSL_SHA1', |
90 'SCTP_PROCESS_LEVEL_LOCKS', | 89 'SCTP_PROCESS_LEVEL_LOCKS', |
91 'SCTP_SIMPLE_ALLOCATOR', | 90 'SCTP_SIMPLE_ALLOCATOR', |
92 '__Userspace__', | 91 '__Userspace__', |
93 '__Userspace_os_NaCl', | 92 '__Userspace_os_NaCl', |
94 'NON_WINDOWS_DEFINE', | 93 'NON_WINDOWS_DEFINE', |
95 # 'SCTP_DEBUG', # Uncomment for SCTP debugging. | 94 # 'SCTP_DEBUG', # Uncomment for SCTP debugging. |
96 ], | 95 ], |
97 'include_dirs': [ | 96 'include_dirs': [ |
98 'usrsctplib/', | 97 'usrsctplib/', |
99 'usrsctplib/netinet', | 98 'usrsctplib/netinet', |
100 ], | 99 ], |
101 'direct_dependent_settings': { | 100 'direct_dependent_settings': { |
102 'include_dirs': [ | 101 'include_dirs': [ |
103 'usrsctplib/', | 102 'usrsctplib/', |
104 'usrsctplib/netinet', | 103 'usrsctplib/netinet', |
105 ], | 104 ], |
106 }, | 105 }, |
107 'pnacl_cflags!': [ '-Werror', '-Wall' ], | 106 'pnacl_cflags!': [ '-Werror', '-Wall' ], |
108 'pnacl_cflags': [ '-w' ], | 107 'pnacl_cflags': [ '-w' ], |
109 }, # target usrsctp | 108 }, # target usrsctp |
110 ], # targets | 109 ], # targets |
111 } | 110 } |
OLD | NEW |