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

Side by Side Diff: net/third_party/nss/ssl.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 | « gpu/gles2_conform_support/gles2_conform_test.gyp ('k') | third_party/cld/cld.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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'libssl', 8 'target_name': 'libssl',
9 'type': '<(component)', 9 'type': '<(component)',
10 'product_name': 'crssl', # Don't conflict with OpenSSL's libssl 10 'product_name': 'crssl', # Don't conflict with OpenSSL's libssl
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ], 55 ],
56 'sources!': [ 56 'sources!': [
57 'ssl/os2_err.c', 57 'ssl/os2_err.c',
58 'ssl/os2_err.h', 58 'ssl/os2_err.h',
59 ], 59 ],
60 'defines': [ 60 'defines': [
61 'NO_PKCS11_BYPASS', 61 'NO_PKCS11_BYPASS',
62 'NSS_ENABLE_ECC', 62 'NSS_ENABLE_ECC',
63 'USE_UTIL_DIRECTLY', 63 'USE_UTIL_DIRECTLY',
64 ], 64 ],
65 'msvs_disabled_warnings': [4018, 4244, 4267], 65 'msvs_disabled_warnings': [4244, 4267],
66 'variables': { 66 'variables': {
67 'clang_warning_flags_unset': [ 67 'clang_warning_flags_unset': [
68 # ssl uses PR_ASSERT(!"foo") instead of PR_ASSERT(false && "foo") 68 # ssl uses PR_ASSERT(!"foo") instead of PR_ASSERT(false && "foo")
69 '-Wstring-conversion', 69 '-Wstring-conversion',
70 ], 70 ],
71 }, 71 },
72 'conditions': [ 72 'conditions': [
73 ['component == "shared_library"', { 73 ['component == "shared_library"', {
74 'conditions': [ 74 'conditions': [
75 ['OS == "mac" or OS == "ios"', { 75 ['OS == "mac" or OS == "ios"', {
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'configurations': { 176 'configurations': {
177 'Debug_Base': { 177 'Debug_Base': {
178 'defines': [ 178 'defines': [
179 'DEBUG', 179 'DEBUG',
180 ], 180 ],
181 }, 181 },
182 }, 182 },
183 }, 183 },
184 ], 184 ],
185 } 185 }
OLDNEW
« no previous file with comments | « gpu/gles2_conform_support/gles2_conform_test.gyp ('k') | third_party/cld/cld.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698