OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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) |
11 # 2) C source files that are #included by static C sources (eg., license.c) | 11 # 2) C source files that are #included by static C sources (eg., license.c) |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 'source/patched-yasm/modules/objfmts/coff/win64-except.c', | 120 'source/patched-yasm/modules/objfmts/coff/win64-except.c', |
121 'source/patched-yasm/modules/objfmts/dbg/dbg-objfmt.c', | 121 'source/patched-yasm/modules/objfmts/dbg/dbg-objfmt.c', |
122 'source/patched-yasm/modules/objfmts/elf/elf-objfmt.c', | 122 'source/patched-yasm/modules/objfmts/elf/elf-objfmt.c', |
123 'source/patched-yasm/modules/objfmts/elf/elf-x86-amd64.c', | 123 'source/patched-yasm/modules/objfmts/elf/elf-x86-amd64.c', |
124 'source/patched-yasm/modules/objfmts/elf/elf-x86-x86.c', | 124 'source/patched-yasm/modules/objfmts/elf/elf-x86-x86.c', |
125 'source/patched-yasm/modules/objfmts/elf/elf.c', | 125 'source/patched-yasm/modules/objfmts/elf/elf.c', |
126 'source/patched-yasm/modules/objfmts/macho/macho-objfmt.c', | 126 'source/patched-yasm/modules/objfmts/macho/macho-objfmt.c', |
127 'source/patched-yasm/modules/objfmts/rdf/rdf-objfmt.c', | 127 'source/patched-yasm/modules/objfmts/rdf/rdf-objfmt.c', |
128 'source/patched-yasm/modules/objfmts/xdf/xdf-objfmt.c', | 128 'source/patched-yasm/modules/objfmts/xdf/xdf-objfmt.c', |
129 'source/patched-yasm/modules/parsers/gas/gas-parse.c', | 129 'source/patched-yasm/modules/parsers/gas/gas-parse.c', |
| 130 'source/patched-yasm/modules/parsers/gas/gas-parse-intel.c', |
130 'source/patched-yasm/modules/parsers/gas/gas-parser.c', | 131 'source/patched-yasm/modules/parsers/gas/gas-parser.c', |
131 'source/patched-yasm/modules/parsers/nasm/nasm-parse.c', | 132 'source/patched-yasm/modules/parsers/nasm/nasm-parse.c', |
132 'source/patched-yasm/modules/parsers/nasm/nasm-parser.c', | 133 'source/patched-yasm/modules/parsers/nasm/nasm-parser.c', |
133 'source/patched-yasm/modules/preprocs/cpp/cpp-preproc.c', | 134 'source/patched-yasm/modules/preprocs/cpp/cpp-preproc.c', |
134 'source/patched-yasm/modules/preprocs/nasm/nasm-eval.c', | 135 'source/patched-yasm/modules/preprocs/nasm/nasm-eval.c', |
135 'source/patched-yasm/modules/preprocs/nasm/nasm-pp.c', | 136 'source/patched-yasm/modules/preprocs/nasm/nasm-pp.c', |
136 'source/patched-yasm/modules/preprocs/nasm/nasm-preproc.c', | 137 'source/patched-yasm/modules/preprocs/nasm/nasm-preproc.c', |
137 'source/patched-yasm/modules/preprocs/nasm/nasmlib.c', | 138 'source/patched-yasm/modules/preprocs/nasm/nasmlib.c', |
138 'source/patched-yasm/modules/preprocs/raw/raw-preproc.c', | 139 'source/patched-yasm/modules/preprocs/raw/raw-preproc.c', |
139 | 140 |
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 ], | 531 ], |
531 }, | 532 }, |
532 ], | 533 ], |
533 } | 534 } |
534 | 535 |
535 # Local Variables: | 536 # Local Variables: |
536 # tab-width:2 | 537 # tab-width:2 |
537 # indent-tabs-mode:nil | 538 # indent-tabs-mode:nil |
538 # End: | 539 # End: |
539 # vim: set expandtab tabstop=2 shiftwidth=2: | 540 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |