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

Side by Side Diff: net/third_party/nss/ssl.gyp

Issue 11830032: Make all net targets build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | « net/spdy/spdy_session_spdy3_unittest.cc ('k') | 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 'conditions': [ 6 'conditions': [
7 [ 'os_posix == 1 and OS != "mac" and OS != "ios"', { 7 [ 'os_posix == 1 and OS != "mac" and OS != "ios"', {
8 'conditions': [ 8 'conditions': [
9 ['sysroot!=""', { 9 ['sysroot!=""', {
10 'variables': { 10 'variables': {
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 'NSS_ENABLE_ZLIB', 79 'NSS_ENABLE_ZLIB',
80 'USE_UTIL_DIRECTLY', 80 'USE_UTIL_DIRECTLY',
81 ], 81 ],
82 'defines!': [ 82 'defines!': [
83 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet. 83 # Regrettably, NSS can't be compiled with NO_NSPR_10_SUPPORT yet.
84 'NO_NSPR_10_SUPPORT', 84 'NO_NSPR_10_SUPPORT',
85 ], 85 ],
86 'dependencies': [ 86 'dependencies': [
87 '../../../third_party/zlib/zlib.gyp:zlib', 87 '../../../third_party/zlib/zlib.gyp:zlib',
88 ], 88 ],
89 'msvs_disabled_warnings': [4018, 4244], 89 'msvs_disabled_warnings': [4018, 4244, 4267],
90 'conditions': [ 90 'conditions': [
91 [ 'clang == 1', { 91 [ 'clang == 1', {
92 'cflags': [ 92 'cflags': [
93 # See http://crbug.com/138571#c8. In short, sslsecur.c picks up the 93 # See http://crbug.com/138571#c8. In short, sslsecur.c picks up the
94 # system's cert.h because cert.h isn't in chromium's repo. 94 # system's cert.h because cert.h isn't in chromium's repo.
95 '-Wno-incompatible-pointer-types', 95 '-Wno-incompatible-pointer-types',
96 ], 96 ],
97 }], 97 }],
98 [ 'OS == "mac" or OS == "ios"', { 98 [ 'OS == "mac" or OS == "ios"', {
99 'defines': [ 99 'defines': [
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 'configurations': { 171 'configurations': {
172 'Debug_Base': { 172 'Debug_Base': {
173 'defines': [ 173 'defines': [
174 'DEBUG', 174 'DEBUG',
175 ], 175 ],
176 }, 176 },
177 }, 177 },
178 }, 178 },
179 ], 179 ],
180 } 180 }
OLDNEW
« no previous file with comments | « net/spdy/spdy_session_spdy3_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698