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

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

Issue 1422773008: Fixing remaining VC++ 2015 64-bit build breaks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Supply reference for handles-are-32-bits claim Created 5 years, 1 month 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
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 'variables': { 6 'variables': {
7 'generated_src_dir': 'src/chromium_gensrc', 7 'generated_src_dir': 'src/chromium_gensrc',
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 'defines': [ 10 'defines': [
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 '<(generated_src_dir)/mesa/glapi', 264 '<(generated_src_dir)/mesa/glapi',
265 ], 265 ],
266 'dependencies': [ 266 'dependencies': [
267 'mesa_headers', 267 'mesa_headers',
268 'mesa_libglslcommon', 268 'mesa_libglslcommon',
269 ], 269 ],
270 # TODO(scottmg): http://crbug.com/143877 These should be removed if 270 # TODO(scottmg): http://crbug.com/143877 These should be removed if
271 # Mesa is ever rolled and the warnings are fixed. 271 # Mesa is ever rolled and the warnings are fixed.
272 'msvs_disabled_warnings': [ 272 'msvs_disabled_warnings': [
273 4005, 4018, 4090, 4099, 4146, 4291, 4305, 4334, 4748, 4267, 273 4005, 4018, 4090, 4099, 4146, 4291, 4305, 4334, 4748, 4267,
274 # TODO(brucedawson): http://crbug.com/554200 4311 is a VS
275 # 2015 64-bit warning for pointer truncation
276 4311,
274 ], 277 ],
275 'variables': { 278 'variables': {
276 'clang_warning_flags': [ 279 'clang_warning_flags': [
277 '-Wno-tautological-constant-out-of-range-compare', 280 '-Wno-tautological-constant-out-of-range-compare',
278 '-Wno-absolute-value', # Fires on st_atom_array.c, might be a bug 281 '-Wno-absolute-value', # Fires on st_atom_array.c, might be a bug
279 '-Wno-mismatched-tags', # Fixed upstream. 282 '-Wno-mismatched-tags', # Fixed upstream.
280 # mesa's STATIC_ASSERT() macro expands to an ununused typedef. 283 # mesa's STATIC_ASSERT() macro expands to an ununused typedef.
281 '-Wno-unused-local-typedef', 284 '-Wno-unused-local-typedef',
282 ], 285 ],
283 'clang_warning_flags_unset': [ 286 'clang_warning_flags_unset': [
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 '<(PRODUCT_DIR)/libosmesa.so', 760 '<(PRODUCT_DIR)/libosmesa.so',
758 '<(SHARED_LIB_DIR)/libosmesa.so', 761 '<(SHARED_LIB_DIR)/libosmesa.so',
759 ], 762 ],
760 }, 763 },
761 ], 764 ],
762 }, 765 },
763 ], 766 ],
764 }], 767 }],
765 ], 768 ],
766 } 769 }
OLDNEW
« third_party/libxml/libxml.gyp ('K') | « third_party/libxslt/libxslt.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698