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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 'rewriter.cc', 'runtime.cc', 'scanner.cc', 'scopeinfo.cc', 'scopes.cc', |
48 'serialize.cc', 'snapshot-common.cc', 'spaces.cc', 'string-stream.cc', | 48 'serialize.cc', 'snapshot-common.cc', 'spaces.cc', 'string-stream.cc', |
49 'stub-cache.cc', 'token.cc', 'top.cc', 'unicode.cc', 'usage-analyzer.cc', | 49 'stub-cache.cc', 'token.cc', 'top.cc', 'unicode.cc', 'usage-analyzer.cc', |
50 'utils.cc', 'v8-counters.cc', 'v8.cc', 'v8threads.cc', 'variables.cc', | 50 'utils.cc', 'v8-counters.cc', 'v8.cc', 'v8threads.cc', 'variables.cc', |
51 'zone.cc' | 51 'zone.cc' |
52 ], | 52 ], |
53 'arch:arm': ['assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', | 53 'arch:arm': ['assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', |
54 'cpu-arm.cc', 'disasm-arm.cc', 'frames-arm.cc', 'ic-arm.cc', | 54 'cpu-arm.cc', 'debug-arm.cc', 'disasm-arm.cc', 'frames-arm.cc', |
55 'macro-assembler-arm.cc', 'regexp-macro-assembler-arm.cc', | 55 'ic-arm.cc', 'macro-assembler-arm.cc', 'regexp-macro-assembler-arm.cc', |
56 'stub-cache-arm.cc'], | 56 'stub-cache-arm.cc'], |
57 'arch:ia32': ['assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', | 57 'arch:ia32': ['assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', |
58 'cpu-ia32.cc', 'disasm-ia32.cc', 'frames-ia32.cc', 'ic-ia32.cc', | 58 'cpu-ia32.cc', 'debug-ia32.cc', 'disasm-ia32.cc', 'frames-ia32.cc', |
59 'macro-assembler-ia32.cc', 'regexp-macro-assembler-ia32.cc', | 59 'ic-ia32.cc', 'macro-assembler-ia32.cc', 'regexp-macro-assembler-ia32.cc', |
60 'stub-cache-ia32.cc'], | 60 'stub-cache-ia32.cc'], |
61 'simulator:arm': ['simulator-arm.cc'], | 61 'simulator:arm': ['simulator-arm.cc'], |
62 'os:freebsd': ['platform-freebsd.cc'], | 62 'os:freebsd': ['platform-freebsd.cc'], |
63 'os:linux': ['platform-linux.cc'], | 63 'os:linux': ['platform-linux.cc'], |
64 'os:macos': ['platform-macos.cc'], | 64 'os:macos': ['platform-macos.cc'], |
65 'os:nullos': ['platform-nullos.cc'], | 65 'os:nullos': ['platform-nullos.cc'], |
66 'os:win32': ['platform-win32.cc'], | 66 'os:win32': ['platform-win32.cc'], |
67 'mode:release': [], | 67 'mode:release': [], |
68 'mode:debug': [ | 68 'mode:debug': [ |
69 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' | 69 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 158 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
159 else: | 159 else: |
160 snapshot_obj = empty_snapshot_obj | 160 snapshot_obj = empty_snapshot_obj |
161 | 161 |
162 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 162 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
163 return (library_objs, d8_objs) | 163 return (library_objs, d8_objs) |
164 | 164 |
165 | 165 |
166 (library_objs, d8_objs) = ConfigureObjectFiles() | 166 (library_objs, d8_objs) = ConfigureObjectFiles() |
167 Return('library_objs d8_objs') | 167 Return('library_objs d8_objs') |
OLD | NEW |