| 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', |
| 11 'type': 'none', | 11 'type': 'none', |
| 12 'variables': { | 12 'variables': { |
| 13 'nlib_target': 'libusrsctplib_nacl.a', | 13 'nlib_target': 'libusrsctplib_nacl.a', |
| 14 'build_glibc': 0, | 14 'build_glibc': 0, |
| 15 'build_newlib': 0, | 15 'build_newlib': 0, |
| 16 'build_pnacl_newlib': 1, | 16 'build_pnacl_newlib': 1, |
| 17 }, | 17 }, |
| 18 'dependencies': [ | 18 'dependencies': [ |
| 19 '<(DEPTH)/native_client/tools.gyp:prep_toolchain', | |
| 20 '<(DEPTH)/native_client_sdk/native_client_sdk_untrusted.gyp:nacl_io_untr
usted', | 19 '<(DEPTH)/native_client_sdk/native_client_sdk_untrusted.gyp:nacl_io_untr
usted', |
| 21 '<(DEPTH)/third_party/boringssl/boringssl_nacl.gyp:boringssl_nacl', | 20 '<(DEPTH)/third_party/boringssl/boringssl_nacl.gyp:boringssl_nacl', |
| 22 ], | 21 ], |
| 23 'sources': [ | 22 'sources': [ |
| 24 # Note: sources list duplicated in GN build. | 23 # Note: sources list duplicated in GN build. |
| 25 'usrsctplib/netinet/sctp.h', | 24 'usrsctplib/netinet/sctp.h', |
| 26 'usrsctplib/netinet/sctp_asconf.c', | 25 'usrsctplib/netinet/sctp_asconf.c', |
| 27 'usrsctplib/netinet/sctp_asconf.h', | 26 'usrsctplib/netinet/sctp_asconf.h', |
| 28 'usrsctplib/netinet/sctp_auth.c', | 27 'usrsctplib/netinet/sctp_auth.c', |
| 29 'usrsctplib/netinet/sctp_auth.h', | 28 'usrsctplib/netinet/sctp_auth.h', |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 'include_dirs': [ | 100 'include_dirs': [ |
| 102 'usrsctplib/', | 101 'usrsctplib/', |
| 103 'usrsctplib/netinet', | 102 'usrsctplib/netinet', |
| 104 ], | 103 ], |
| 105 }, | 104 }, |
| 106 'pnacl_cflags!': [ '-Werror', '-Wall' ], | 105 'pnacl_cflags!': [ '-Werror', '-Wall' ], |
| 107 'pnacl_cflags': [ '-w' ], | 106 'pnacl_cflags': [ '-w' ], |
| 108 }, # target usrsctp | 107 }, # target usrsctp |
| 109 ], # targets | 108 ], # targets |
| 110 } | 109 } |
| OLD | NEW |