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

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

Issue 1246863002: Enable MSVC warning C4018 for various directories that seem to pass as-is. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Included 1 extra dir Created 5 years, 5 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
« no previous file with comments | « net/third_party/nss/ssl.gyp ('k') | third_party/usrsctp/usrsctp.gyp » ('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 { 5 {
6 'includes': [ 6 'includes': [
7 '../../build/win_precompile.gypi', 7 '../../build/win_precompile.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 ], 103 ],
104 }, 104 },
105 'conditions': [ 105 'conditions': [
106 ['OS=="win"', { 106 ['OS=="win"', {
107 'direct_dependent_settings': { 107 'direct_dependent_settings': {
108 'defines': [ 108 'defines': [
109 'COMPILER_MSVC', 109 'COMPILER_MSVC',
110 ], 110 ],
111 }, 111 },
112 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int 112 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int
113 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800, 4267], 113 'msvs_disabled_warnings': [4005, 4006, 4244, 4309, 4800, 4267],
114 }, { 114 }, {
115 'direct_dependent_settings': { 115 'direct_dependent_settings': {
116 'defines': [ 116 'defines': [
117 'COMPILER_GCC', 117 'COMPILER_GCC',
118 ], 118 ],
119 }, 119 },
120 }], 120 }],
121 ], 121 ],
122 }, 122 },
123 ], 123 ],
124 } 124 }
OLDNEW
« no previous file with comments | « net/third_party/nss/ssl.gyp ('k') | third_party/usrsctp/usrsctp.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698