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

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

Issue 10827429: Turn on warnings as errors for (most) third_party code on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
« third_party/qcms/qcms.gyp ('K') | « third_party/qcms/qcms.gyp ('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 # The yasm build process creates a slew of small C subprograms that 5 # The yasm build process creates a slew of small C subprograms that
6 # dynamically generate files at various point in the build process. This makes 6 # dynamically generate files at various point in the build process. This makes
7 # the build integration moderately complex. 7 # the build integration moderately complex.
8 # 8 #
9 # There are three classes of dynamically generated files: 9 # There are three classes of dynamically generated files:
10 # 1) C source files that should be included in the build (eg., lc3bid.c) 10 # 1) C source files that should be included in the build (eg., lc3bid.c)
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'dependencies': [ 64 'dependencies': [
65 'config_sources', 65 'config_sources',
66 'genmacro', 66 'genmacro',
67 'genmodule', 67 'genmodule',
68 'genperf', 68 'genperf',
69 'genperf_libs', 69 'genperf_libs',
70 'generate_files', # Needed to generate gperf and instruction files. 70 'generate_files', # Needed to generate gperf and instruction files.
71 'genstring', 71 'genstring',
72 're2c', 72 're2c',
73 ], 73 ],
74 'msvs_disabled_warnings': [ 4018, 4090 ],
Nico 2012/08/20 23:43:17 nit: link to patch
scottmg 2012/08/20 23:47:46 Done.
74 'sources': [ 75 'sources': [
75 'source/patched-yasm/frontends/yasm/yasm-options.c', 76 'source/patched-yasm/frontends/yasm/yasm-options.c',
76 'source/patched-yasm/frontends/yasm/yasm.c', 77 'source/patched-yasm/frontends/yasm/yasm.c',
77 'source/patched-yasm/libyasm/assocdat.c', 78 'source/patched-yasm/libyasm/assocdat.c',
78 'source/patched-yasm/libyasm/bc-align.c', 79 'source/patched-yasm/libyasm/bc-align.c',
79 'source/patched-yasm/libyasm/bc-data.c', 80 'source/patched-yasm/libyasm/bc-data.c',
80 'source/patched-yasm/libyasm/bc-incbin.c', 81 'source/patched-yasm/libyasm/bc-incbin.c',
81 'source/patched-yasm/libyasm/bc-org.c', 82 'source/patched-yasm/libyasm/bc-org.c',
82 'source/patched-yasm/libyasm/bc-reserve.c', 83 'source/patched-yasm/libyasm/bc-reserve.c',
83 'source/patched-yasm/libyasm/bitvect.c', 84 'source/patched-yasm/libyasm/bitvect.c',
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 'include_dirs': [ 568 'include_dirs': [
568 '<@(yasm_include_dirs)', 569 '<@(yasm_include_dirs)',
569 570
570 ], 571 ],
571 'cflags': [ 572 'cflags': [
572 '-std=gnu99', 573 '-std=gnu99',
573 ], 574 ],
574 }, 575 },
575 ], 576 ],
576 } 577 }
OLDNEW
« third_party/qcms/qcms.gyp ('K') | « third_party/qcms/qcms.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698