OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 | 6 |
7 'includes': [ | 7 'includes': [ |
8 'gles2_conform.gypi', | 8 'gles2_conform.gypi', |
9 ], | 9 ], |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 '<(angle_path)/src/angle.gyp:libEGL', | 130 '<(angle_path)/src/angle.gyp:libEGL', |
131 ], | 131 ], |
132 'defines': [ | 132 'defines': [ |
133 'EGLAPI=', | 133 'EGLAPI=', |
134 'EGLAPIENTRY=', | 134 'EGLAPIENTRY=', |
135 ], | 135 ], |
136 'msvs_disabled_warnings': [ | 136 'msvs_disabled_warnings': [ |
137 4018, # signed/unsigned mismatch | 137 4018, # signed/unsigned mismatch |
138 4101, # unreferenced local variable | 138 4101, # unreferenced local variable |
139 4715, # not all control paths return a value | 139 4715, # not all control paths return a value |
| 140 4267, # size_t/unsigned int conversion |
140 ], | 141 ], |
141 'msvs_settings': { | 142 'defines!': [ 'NOMINMAX' ], |
142 'VCCLCompilerTool': { | |
143 'AdditionalOptions': ['/UNOMINMAX'], | |
144 }, | |
145 }, | |
146 }], | 143 }], |
147 ['OS=="mac"', { | 144 ['OS=="mac"', { |
148 'defines': [ | 145 'defines': [ |
149 '_STDINT', | 146 '_STDINT', |
150 '_STDINT_H', | 147 '_STDINT_H', |
151 ], | 148 ], |
152 'conditions': [ | 149 'conditions': [ |
153 [ 'clang==1', { | 150 [ 'clang==1', { |
154 'cflags': [ | 151 'cflags': [ |
155 '-Wno-pointer-sign', | 152 '-Wno-pointer-sign', |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 }], | 251 }], |
255 ], | 252 ], |
256 } | 253 } |
257 | 254 |
258 | 255 |
259 # Local Variables: | 256 # Local Variables: |
260 # tab-width:2 | 257 # tab-width:2 |
261 # indent-tabs-mode:nil | 258 # indent-tabs-mode:nil |
262 # End: | 259 # End: |
263 # vim: set expandtab tabstop=2 shiftwidth=2: | 260 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |