| OLD | NEW |
| 1 # Copyright 2008 the V8 project authors. All rights reserved. | 1 # Copyright 2008 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 'all': [ | 37 'all': [ |
| 38 'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 'ast.cc', | 38 'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 'ast.cc', |
| 39 'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'code-stubs.cc', | 39 'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'code-stubs.cc', |
| 40 'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 'contexts.cc', | 40 'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 'contexts.cc', |
| 41 'conversions.cc', 'counters.cc', 'dateparser.cc', 'debug.cc', | 41 'conversions.cc', 'counters.cc', 'dateparser.cc', 'debug.cc', |
| 42 'disassembler.cc', 'execution.cc', 'factory.cc', 'flags.cc', 'frames.cc', | 42 'disassembler.cc', 'execution.cc', 'factory.cc', 'flags.cc', 'frames.cc', |
| 43 'global-handles.cc', 'handles.cc', 'hashmap.cc', 'heap.cc', 'ic.cc', | 43 'global-handles.cc', 'handles.cc', 'hashmap.cc', 'heap.cc', 'ic.cc', |
| 44 'interpreter-irregexp.cc', 'jsregexp.cc', 'log.cc', 'mark-compact.cc', | 44 'interpreter-irregexp.cc', 'jsregexp.cc', 'log.cc', 'mark-compact.cc', |
| 45 'messages.cc', 'objects.cc', 'parser.cc', 'property.cc', | 45 'messages.cc', 'objects.cc', 'parser.cc', 'property.cc', |
| 46 'regexp-macro-assembler.cc', 'regexp-macro-assembler-irregexp.cc', | 46 'regexp-macro-assembler.cc', 'regexp-macro-assembler-irregexp.cc', |
| 47 'rewriter.cc', 'runtime.cc', 'scanner.cc', 'scopeinfo.cc', 'scopes.cc', | 47 'regexp-stack.cc', 'rewriter.cc', 'runtime.cc', 'scanner.cc', |
| 48 'serialize.cc', 'snapshot-common.cc', 'spaces.cc', 'string-stream.cc', | 48 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 'snapshot-common.cc', |
| 49 'stub-cache.cc', 'token.cc', 'top.cc', 'unicode.cc', 'usage-analyzer.cc', | 49 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', 'token.cc', 'top.cc', |
| 50 'utils.cc', 'v8-counters.cc', 'v8.cc', 'v8threads.cc', 'variables.cc', | 50 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc', 'v8.cc', |
| 51 'zone.cc' | 51 'v8threads.cc', 'variables.cc', 'zone.cc' |
| 52 ], | 52 ], |
| 53 'arch:arm': [ | 53 'arch:arm': [ |
| 54 'assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', 'cpu-arm.cc', | 54 'assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', 'cpu-arm.cc', |
| 55 'disasm-arm.cc', 'debug-arm.cc', 'frames-arm.cc', 'ic-arm.cc', | 55 'disasm-arm.cc', 'debug-arm.cc', 'frames-arm.cc', 'ic-arm.cc', |
| 56 'jump-target-arm.cc', 'macro-assembler-arm.cc', | 56 'jump-target-arm.cc', 'macro-assembler-arm.cc', |
| 57 'regexp-macro-assembler-arm.cc', 'stub-cache-arm.cc', | 57 'regexp-macro-assembler-arm.cc', 'stub-cache-arm.cc', |
| 58 'virtual-frame-arm.cc' | 58 'virtual-frame-arm.cc' |
| 59 ], | 59 ], |
| 60 'arch:ia32': [ | 60 'arch:ia32': [ |
| 61 'assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', 'cpu-ia32.cc', | 61 'assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', 'cpu-ia32.cc', |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 164 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
| 165 else: | 165 else: |
| 166 snapshot_obj = empty_snapshot_obj | 166 snapshot_obj = empty_snapshot_obj |
| 167 | 167 |
| 168 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 168 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
| 169 return (library_objs, d8_objs) | 169 return (library_objs, d8_objs) |
| 170 | 170 |
| 171 | 171 |
| 172 (library_objs, d8_objs) = ConfigureObjectFiles() | 172 (library_objs, d8_objs) = ConfigureObjectFiles() |
| 173 Return('library_objs d8_objs') | 173 Return('library_objs d8_objs') |
| OLD | NEW |