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

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

Issue 10916080: yasm: merge fixes from upstream and remove warning suppression on win (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: +deps Created 8 years, 3 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 | « third_party/yasm/README.chromium ('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 # Patch to fix posted upstream, but not yet merged.
75 # https://github.com/yasm/yasm/pull/64
76 'msvs_disabled_warnings': [ 4018, 4090 ],
77 'sources': [ 74 'sources': [
78 'source/patched-yasm/frontends/yasm/yasm-options.c', 75 'source/patched-yasm/frontends/yasm/yasm-options.c',
79 'source/patched-yasm/frontends/yasm/yasm.c', 76 'source/patched-yasm/frontends/yasm/yasm.c',
80 'source/patched-yasm/libyasm/assocdat.c', 77 'source/patched-yasm/libyasm/assocdat.c',
81 'source/patched-yasm/libyasm/bc-align.c', 78 'source/patched-yasm/libyasm/bc-align.c',
82 'source/patched-yasm/libyasm/bc-data.c', 79 'source/patched-yasm/libyasm/bc-data.c',
83 'source/patched-yasm/libyasm/bc-incbin.c', 80 'source/patched-yasm/libyasm/bc-incbin.c',
84 'source/patched-yasm/libyasm/bc-org.c', 81 'source/patched-yasm/libyasm/bc-org.c',
85 'source/patched-yasm/libyasm/bc-reserve.c', 82 'source/patched-yasm/libyasm/bc-reserve.c',
86 'source/patched-yasm/libyasm/bitvect.c', 83 'source/patched-yasm/libyasm/bitvect.c',
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 'include_dirs': [ 567 'include_dirs': [
571 '<@(yasm_include_dirs)', 568 '<@(yasm_include_dirs)',
572 569
573 ], 570 ],
574 'cflags': [ 571 'cflags': [
575 '-std=gnu99', 572 '-std=gnu99',
576 ], 573 ],
577 }, 574 },
578 ], 575 ],
579 } 576 }
OLDNEW
« no previous file with comments | « third_party/yasm/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698