Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Side by Side Diff: regexp2000/src/SConscript

Issue 11271: Building on regexp-ia32. (Closed)
Patch Set: Made it compile correctly. Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | regexp2000/src/assembler-ia32.h » ('j') | regexp2000/src/assembler-ia32.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 25 matching lines...) Expand all
36 SOURCES = { 36 SOURCES = {
37 'all': [ 37 'all': [
38 'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 38 'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc',
39 'assembler-re2k.cc', 'ast.cc', 'bootstrapper.cc', 'builtins.cc', 39 'assembler-re2k.cc', 'ast.cc', 'bootstrapper.cc', 'builtins.cc',
40 'checks.cc', 'code-stubs.cc', 'codegen.cc', 'compilation-cache.cc', 40 'checks.cc', 'code-stubs.cc', 'codegen.cc', 'compilation-cache.cc',
41 'compiler.cc', 'contexts.cc', 'conversions.cc', 'counters.cc', 41 'compiler.cc', 'contexts.cc', 'conversions.cc', 'counters.cc',
42 'dateparser.cc', 'debug.cc', 'disassembler.cc', 'execution.cc', 42 'dateparser.cc', 'debug.cc', 'disassembler.cc', 'execution.cc',
43 'factory.cc', 'flags.cc', 'frames.cc', 'global-handles.cc', 'handles.cc', 43 'factory.cc', 'flags.cc', 'frames.cc', 'global-handles.cc', 'handles.cc',
44 'hashmap.cc', 'heap.cc', 'ic.cc', 'interpreter-re2k.cc', 'jsregexp.cc', 44 'hashmap.cc', 'heap.cc', 'ic.cc', 'interpreter-re2k.cc', 'jsregexp.cc',
45 'log.cc', 'mark-compact.cc', 'messages.cc', 'objects.cc', 'parser.cc', 45 'log.cc', 'mark-compact.cc', 'messages.cc', 'objects.cc', 'parser.cc',
46 'property.cc', 'regexp-macro-assembler-re2k.cc', 'rewriter.cc', 46 'property.cc', 'regexp-macro-assembler.cc',
Erik Corry 2008/11/21 13:03:04 Please reformat.
Lasse Reichstein 2008/11/24 08:32:33 Done. Wouldn't it be easier to maintain if the fil
47 'regexp-macro-assembler-ia32.cc', 'regexp-macro-assembler-re2k.cc',
48 'rewriter.cc',
47 'runtime.cc', 'scanner.cc', 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 49 'runtime.cc', 'scanner.cc', 'scopeinfo.cc', 'scopes.cc', 'serialize.cc',
48 'snapshot-common.cc', 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', 50 'snapshot-common.cc', 'spaces.cc', 'string-stream.cc', 'stub-cache.cc',
49 'token.cc', 'top.cc', 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 51 'token.cc', 'top.cc', 'unicode.cc', 'usage-analyzer.cc', 'utils.cc',
50 'v8-counters.cc', 'v8.cc', 'v8threads.cc', 'variables.cc', 'zone.cc' 52 'v8-counters.cc', 'v8.cc', 'v8threads.cc', 'variables.cc', 'zone.cc'
51 ], 53 ],
52 'arch:arm': ['assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', 54 'arch:arm': ['assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc',
53 'cpu-arm.cc', 'disasm-arm.cc', 'frames-arm.cc', 'ic-arm.cc', 55 'cpu-arm.cc', 'disasm-arm.cc', 'frames-arm.cc', 'ic-arm.cc',
54 'macro-assembler-arm.cc', 'stub-cache-arm.cc'], 56 'macro-assembler-arm.cc', 'stub-cache-arm.cc'],
55 'arch:ia32': ['assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', 57 'arch:ia32': ['assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc',
56 'cpu-ia32.cc', 'disasm-ia32.cc', 'frames-ia32.cc', 'ic-ia32.cc', 58 'cpu-ia32.cc', 'disasm-ia32.cc', 'frames-ia32.cc', 'ic-ia32.cc',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .']) 154 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .'])
153 else: 155 else:
154 snapshot_obj = empty_snapshot_obj 156 snapshot_obj = empty_snapshot_obj
155 157
156 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 158 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
157 return (library_objs, d8_objs) 159 return (library_objs, d8_objs)
158 160
159 161
160 (library_objs, d8_objs) = ConfigureObjectFiles() 162 (library_objs, d8_objs) = ConfigureObjectFiles()
161 Return('library_objs d8_objs') 163 Return('library_objs d8_objs')
OLDNEW
« no previous file with comments | « no previous file | regexp2000/src/assembler-ia32.h » ('j') | regexp2000/src/assembler-ia32.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698