| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 '<(DEPTH)/third_party/nss/nss.gyp:nspr', | 46 '<(DEPTH)/third_party/nss/nss.gyp:nspr', |
| 47 '<(DEPTH)/third_party/nss/nss.gyp:nss', | 47 '<(DEPTH)/third_party/nss/nss.gyp:nss', |
| 48 ], | 48 ], |
| 49 }], | 49 }], |
| 50 ], | 50 ], |
| 51 }], | 51 }], |
| 52 ], | 52 ], |
| 53 }, | 53 }, |
| 54 'targets': [ | 54 'targets': [ |
| 55 { | 55 { |
| 56 # GN version: //third_party/usrsctp |
| 56 'target_name': 'usrsctplib', | 57 'target_name': 'usrsctplib', |
| 57 'type': 'static_library', | 58 'type': 'static_library', |
| 58 'sources': [ | 59 'sources': [ |
| 60 # Note: sources list duplicated in GN build. |
| 59 'usrsctplib/netinet/sctp.h', | 61 'usrsctplib/netinet/sctp.h', |
| 60 'usrsctplib/netinet/sctp_asconf.c', | 62 'usrsctplib/netinet/sctp_asconf.c', |
| 61 'usrsctplib/netinet/sctp_asconf.h', | 63 'usrsctplib/netinet/sctp_asconf.h', |
| 62 'usrsctplib/netinet/sctp_auth.c', | 64 'usrsctplib/netinet/sctp_auth.c', |
| 63 'usrsctplib/netinet/sctp_auth.h', | 65 'usrsctplib/netinet/sctp_auth.h', |
| 64 'usrsctplib/netinet/sctp_bsd_addr.c', | 66 'usrsctplib/netinet/sctp_bsd_addr.c', |
| 65 'usrsctplib/netinet/sctp_bsd_addr.h', | 67 'usrsctplib/netinet/sctp_bsd_addr.h', |
| 66 'usrsctplib/netinet/sctp_callout.c', | 68 'usrsctplib/netinet/sctp_callout.c', |
| 67 'usrsctplib/netinet/sctp_callout.h', | 69 'usrsctplib/netinet/sctp_callout.h', |
| 68 'usrsctplib/netinet/sctp_cc_functions.c', | 70 'usrsctplib/netinet/sctp_cc_functions.c', |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 'msvs_disabled_warnings': [ 4002, 4013, 4018, 4133, 4267, 4313, 4700 ]
, | 166 'msvs_disabled_warnings': [ 4002, 4013, 4018, 4133, 4267, 4313, 4700 ]
, |
| 165 }, { # OS != "win", | 167 }, { # OS != "win", |
| 166 'defines': [ | 168 'defines': [ |
| 167 'NON_WINDOWS_DEFINE', | 169 'NON_WINDOWS_DEFINE', |
| 168 ], | 170 ], |
| 169 }], | 171 }], |
| 170 ], # conditions | 172 ], # conditions |
| 171 }, # target usrsctp | 173 }, # target usrsctp |
| 172 ], # targets | 174 ], # targets |
| 173 } | 175 } |
| OLD | NEW |