Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: third_party/usrsctp/usrsctp.gyp

Issue 720033003: Update to VS2013 Update 4, and Windows SDK 8.1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ntddi Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « device/bluetooth/bluetooth_low_energy_defs_win.h ('k') | ui/gl/gl_implementation_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 'defines': [ 148 'defines': [
149 '__Userspace_os_Windows', 149 '__Userspace_os_Windows',
150 # Manually setting WINVER and _WIN32_WINNT is needed because Chrome 150 # Manually setting WINVER and _WIN32_WINNT is needed because Chrome
151 # sets WINVER to a newer version of windows. But compiling usrsctp 151 # sets WINVER to a newer version of windows. But compiling usrsctp
152 # this way would is incompatible with windows XP. 152 # this way would is incompatible with windows XP.
153 'WINVER=0x0502', 153 'WINVER=0x0502',
154 '_WIN32_WINNT=0x0502', 154 '_WIN32_WINNT=0x0502',
155 ], 155 ],
156 'defines!': [ 156 'defines!': [
157 # Remove Chrome's WINVER defines to avoid redefinition warnings. 157 # Remove Chrome's WINVER defines to avoid redefinition warnings.
158 'WINVER=0x0602', 158 'WINVER=0x0603',
159 '_WIN32_WINNT=0x0602', 159 '_WIN32_WINNT=0x0603',
160 ], 160 ],
161 'cflags!': [ '/W3', '/WX' ], 161 'cflags!': [ '/W3', '/WX' ],
162 'cflags': [ '/w' ], 162 'cflags': [ '/w' ],
163 # TODO(ldixon) : Remove this disabling of warnings by pushing a 163 # TODO(ldixon) : Remove this disabling of warnings by pushing a
164 # fix upstream to usrsctp 164 # fix upstream to usrsctp
165 'msvs_disabled_warnings': [ 4002, 4013, 4018, 4133, 4267, 4313, 4700 ] , 165 'msvs_disabled_warnings': [ 4002, 4013, 4018, 4133, 4267, 4313, 4700 ] ,
166 }, { # OS != "win", 166 }, { # OS != "win",
167 'defines': [ 167 'defines': [
168 'NON_WINDOWS_DEFINE', 168 'NON_WINDOWS_DEFINE',
169 ], 169 ],
170 }], 170 }],
171 ], # conditions 171 ], # conditions
172 }, # target usrsctp 172 }, # target usrsctp
173 ], # targets 173 ], # targets
174 } 174 }
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_low_energy_defs_win.h ('k') | ui/gl/gl_implementation_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698