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

Side by Side Diff: build/standalone.gypi

Issue 1809473002: Remove -Wno-inconsistent-missing-override for clang-cl builds. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | core/fxge/win32/win32_int.h » ('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 2014 PDFium Authors. All rights reserved. 1 # Copyright 2014 PDFium 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 # Definitions to be used when building stand-alone PDFium binaries. 5 # Definitions to be used when building stand-alone PDFium binaries.
6 6
7 { 7 {
8 'variables': { 8 'variables': {
9 'component%': 'static_library', 9 'component%': 'static_library',
10 'clang%': 0, 10 'clang%': 0,
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 329
330 # Many files use intrinsics without including this header. 330 # Many files use intrinsics without including this header.
331 # TODO(hans): Fix those files, or move this to sub-GYPs. 331 # TODO(hans): Fix those files, or move this to sub-GYPs.
332 '/FIIntrin.h', 332 '/FIIntrin.h',
333 333
334 # TODO(hans): Make this list shorter eventually, http://crbug.com/ 504657 334 # TODO(hans): Make this list shorter eventually, http://crbug.com/ 504657
335 '-Qunused-arguments', # http://crbug.com/504658 335 '-Qunused-arguments', # http://crbug.com/504658
336 '-Wno-microsoft-enum-value', # http://crbug.com/505296 336 '-Wno-microsoft-enum-value', # http://crbug.com/505296
337 '-Wno-unknown-pragmas', # http://crbug.com/505314 337 '-Wno-unknown-pragmas', # http://crbug.com/505314
338 '-Wno-microsoft-cast', # http://crbug.com/550065 338 '-Wno-microsoft-cast', # http://crbug.com/550065
339
340 # TODO(ochang): Fix these properly eventually.
341 '-Wno-inconsistent-missing-override',
342 ], 339 ],
343 }], 340 }],
344 ['OS=="win" and clang==1 and MSVS_VERSION == "2013"', { 341 ['OS=="win" and clang==1 and MSVS_VERSION == "2013"', {
345 'VCCLCompilerTool': { 342 'VCCLCompilerTool': {
346 'AdditionalOptions': [ 343 'AdditionalOptions': [
347 '-fmsc-version=1800', 344 '-fmsc-version=1800',
348 ], 345 ],
349 }, 346 },
350 }], 347 }],
351 ['OS=="win" and clang==1 and MSVS_VERSION == "2015"', { 348 ['OS=="win" and clang==1 and MSVS_VERSION == "2015"', {
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 ], 498 ],
502 }], # OS=="win" 499 }], # OS=="win"
503 ["use_goma==1", { 500 ["use_goma==1", {
504 'make_global_settings': [ 501 'make_global_settings': [
505 ['CC_wrapper', '<(gomadir)/gomacc'], 502 ['CC_wrapper', '<(gomadir)/gomacc'],
506 ['CXX_wrapper', '<(gomadir)/gomacc'], 503 ['CXX_wrapper', '<(gomadir)/gomacc'],
507 ], 504 ],
508 }], # use_goma==1 505 }], # use_goma==1
509 ], 506 ],
510 } 507 }
OLDNEW
« no previous file with comments | « no previous file | core/fxge/win32/win32_int.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698