OLD | NEW |
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 Loading... |
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 ], |
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 Loading... |
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 } |
OLD | NEW |