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

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

Issue 11783096: disable c4267 in cld for building on win x64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix crazy gyp formatting 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 | « 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 'includes': [ 6 'includes': [
7 '../../build/win_precompile.gypi', 7 '../../build/win_precompile.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 'direct_dependent_settings': { 94 'direct_dependent_settings': {
95 'defines': [ 95 'defines': [
96 'CLD_WINDOWS', 96 'CLD_WINDOWS',
97 ], 97 ],
98 'include_dirs': [ 98 'include_dirs': [
99 '.', 99 '.',
100 ], 100 ],
101 }, 101 },
102 'conditions': [ 102 'conditions': [
103 ['OS=="win"', { 103 ['OS=="win"', {
104 'direct_dependent_settings': { 104 'direct_dependent_settings': {
105 'defines': [ 105 'defines': [
106 'COMPILER_MSVC', 106 'COMPILER_MSVC',
107 ], 107 ],
108 }, 108 },
109 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800], 109 # TODO(jschuh): C4267: http://crbug.com/167187 size_t -> int
110 }, 110 'msvs_disabled_warnings': [4005, 4006, 4018, 4244, 4309, 4800, 4267],
111 ], 111 }, {
112 ['OS!="win"', { 112 'direct_dependent_settings': {
113 'direct_dependent_settings': { 113 'defines': [
114 'defines': [ 114 'COMPILER_GCC',
115 'COMPILER_GCC', 115 ],
116 ], 116 },
117 }, 117 }],
118 },
119 ],
120 ], 118 ],
121 }, 119 },
122 ], 120 ],
123 } 121 }
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