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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 'flags.cc', 'frames.cc', 'func-name-inferrer.cc', | 43 'flags.cc', 'frames.cc', 'func-name-inferrer.cc', |
44 'global-handles.cc', 'handles.cc', 'hashmap.cc', | 44 'global-handles.cc', 'handles.cc', 'hashmap.cc', |
45 'heap.cc', 'ic.cc', 'interpreter-irregexp.cc', 'jsregexp.cc', | 45 'heap.cc', 'ic.cc', 'interpreter-irregexp.cc', 'jsregexp.cc', |
46 'jump-target.cc', 'log.cc', 'mark-compact.cc', 'messages.cc', 'objects.cc', | 46 'jump-target.cc', 'log.cc', 'mark-compact.cc', 'messages.cc', 'objects.cc', |
47 'oprofile-agent.cc', 'parser.cc', 'property.cc', 'regexp-macro-assembler.cc'
, | 47 'oprofile-agent.cc', 'parser.cc', 'property.cc', 'regexp-macro-assembler.cc'
, |
48 'regexp-macro-assembler-irregexp.cc', 'regexp-stack.cc', | 48 'regexp-macro-assembler-irregexp.cc', 'regexp-stack.cc', |
49 'register-allocator.cc', 'rewriter.cc', 'runtime.cc', 'scanner.cc', | 49 'register-allocator.cc', 'rewriter.cc', 'runtime.cc', 'scanner.cc', |
50 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 'snapshot-common.cc', | 50 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 'snapshot-common.cc', |
51 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', 'token.cc', 'top.cc', | 51 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', 'token.cc', 'top.cc', |
52 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc', | 52 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc', |
53 'v8.cc', 'v8threads.cc', 'variables.cc', 'virtual-frame.cc', 'zone.cc' | 53 'v8.cc', 'v8threads.cc', 'variables.cc', 'version.cc', |
| 54 'virtual-frame.cc', 'zone.cc' |
54 ], | 55 ], |
55 'arch:arm': [ | 56 'arch:arm': [ |
56 'arm/assembler-arm.cc', 'arm/builtins-arm.cc', | 57 'arm/assembler-arm.cc', 'arm/builtins-arm.cc', |
57 'arm/codegen-arm.cc', 'arm/cpu-arm.cc', 'arm/disasm-arm.cc', | 58 'arm/codegen-arm.cc', 'arm/cpu-arm.cc', 'arm/disasm-arm.cc', |
58 'arm/debug-arm.cc', 'arm/frames-arm.cc', 'arm/ic-arm.cc', | 59 'arm/debug-arm.cc', 'arm/frames-arm.cc', 'arm/ic-arm.cc', |
59 'arm/jump-target-arm.cc', 'arm/macro-assembler-arm.cc', | 60 'arm/jump-target-arm.cc', 'arm/macro-assembler-arm.cc', |
60 'arm/register-allocator-arm.cc', 'arm/stub-cache-arm.cc', | 61 'arm/register-allocator-arm.cc', 'arm/stub-cache-arm.cc', |
61 'arm/regexp-macro-assembler-arm.cc', 'arm/virtual-frame-arm.cc' | 62 'arm/regexp-macro-assembler-arm.cc', 'arm/virtual-frame-arm.cc' |
62 ], | 63 ], |
63 'arch:ia32': [ | 64 'arch:ia32': [ |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 178 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
178 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 179 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
179 else: | 180 else: |
180 snapshot_obj = empty_snapshot_obj | 181 snapshot_obj = empty_snapshot_obj |
181 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 182 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
182 return (library_objs, d8_objs, [mksnapshot]) | 183 return (library_objs, d8_objs, [mksnapshot]) |
183 | 184 |
184 | 185 |
185 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 186 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
186 Return('library_objs d8_objs mksnapshot') | 187 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |