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

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

Issue 443453002: libxml.gyp: remove clang-on-windows specific option (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 # Define an "os_include" variable that points at the OS-specific generated 8 # Define an "os_include" variable that points at the OS-specific generated
9 # headers. These were generated by running the configure script offline. 9 # headers. These were generated by running the configure script offline.
10 ['os_posix == 1 and OS != "mac" and OS != "ios"', { 10 ['os_posix == 1 and OS != "mac" and OS != "ios"', {
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 ['OS=="win"', { 241 ['OS=="win"', {
242 'product_name': 'libxml2', 242 'product_name': 'libxml2',
243 # Disable unimportant 'unused variable' warning, and 243 # Disable unimportant 'unused variable' warning, and
244 # signed/unsigned comparison warning. The signed/unsigned (4101) 244 # signed/unsigned comparison warning. The signed/unsigned (4101)
245 # is fixed upstream and can be removed eventually. 245 # is fixed upstream and can be removed eventually.
246 # TODO(jschuh): http://crbug.com/167187 size_t -> int 246 # TODO(jschuh): http://crbug.com/167187 size_t -> int
247 'msvs_disabled_warnings': [ 4018, 4101, 4267 ], 247 'msvs_disabled_warnings': [ 4018, 4101, 4267 ],
248 }, { # else: OS!="win" 248 }, { # else: OS!="win"
249 'product_name': 'xml2', 249 'product_name': 'xml2',
250 }], 250 }],
251 ['clang==1', {
252 'msvs_settings': {
253 'VCCLCompilerTool': {
254 'AdditionalOptions': [
255 # VS2012's standard lib doesn't provide nan().
256 '/U__STDC_VERSION__',
257 ],
258 },
259 },
260 }],
261 ], 251 ],
262 }], 252 }],
263 ], 253 ],
264 }, 254 },
265 ], 255 ],
266 } 256 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698