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 config("usrsctp_config") { | 5 config("usrsctp_config") { |
6 include_dirs = [ | 6 include_dirs = [ |
7 "usrsctplib/usrsctplib", | 7 "usrsctplib/usrsctplib", |
8 "usrsctplib/usrsctplib/netinet", | 8 "usrsctplib/usrsctplib/netinet", |
9 ] | 9 ] |
10 } | 10 } |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 # this way would is incompatible with windows XP. | 131 # this way would is incompatible with windows XP. |
132 "WINVER=0x0502", | 132 "WINVER=0x0502", |
133 "_WIN32_WINNT=0x0502", | 133 "_WIN32_WINNT=0x0502", |
134 ] | 134 ] |
135 configs -= [ "//build/config/win:winver" ] | 135 configs -= [ "//build/config/win:winver" ] |
136 } else { | 136 } else { |
137 defines += [ "NON_WINDOWS_DEFINE" ] | 137 defines += [ "NON_WINDOWS_DEFINE" ] |
138 } | 138 } |
139 | 139 |
140 deps = [ | 140 deps = [ |
141 "//crypto:platform", | 141 "//third_party/boringssl", |
142 ] | 142 ] |
143 } | 143 } |
OLD | NEW |