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

Side by Side Diff: src/SConscript

Issue 165443: X64: Implement RegExp natively. (Closed)
Patch Set: Addressed review comments. Created 11 years, 4 months 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
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 'ia32/jump-target-ia32.cc', 'ia32/macro-assembler-ia32.cc', 70 'ia32/jump-target-ia32.cc', 'ia32/macro-assembler-ia32.cc',
71 'ia32/regexp-macro-assembler-ia32.cc', 71 'ia32/regexp-macro-assembler-ia32.cc',
72 'ia32/register-allocator-ia32.cc', 'ia32/stub-cache-ia32.cc', 72 'ia32/register-allocator-ia32.cc', 'ia32/stub-cache-ia32.cc',
73 'ia32/virtual-frame-ia32.cc' 73 'ia32/virtual-frame-ia32.cc'
74 ], 74 ],
75 'arch:x64': [ 75 'arch:x64': [
76 'x64/assembler-x64.cc', 'x64/builtins-x64.cc', 'x64/cfg-x64.cc', 76 'x64/assembler-x64.cc', 'x64/builtins-x64.cc', 'x64/cfg-x64.cc',
77 'x64/codegen-x64.cc', 'x64/cpu-x64.cc', 'x64/disasm-x64.cc', 77 'x64/codegen-x64.cc', 'x64/cpu-x64.cc', 'x64/disasm-x64.cc',
78 'x64/debug-x64.cc', 'x64/frames-x64.cc', 'x64/ic-x64.cc', 78 'x64/debug-x64.cc', 'x64/frames-x64.cc', 'x64/ic-x64.cc',
79 'x64/jump-target-x64.cc', 'x64/macro-assembler-x64.cc', 79 'x64/jump-target-x64.cc', 'x64/macro-assembler-x64.cc',
80 # 'x64/regexp-macro-assembler-x64.cc', 80 'x64/regexp-macro-assembler-x64.cc',
81 'x64/register-allocator-x64.cc', 81 'x64/register-allocator-x64.cc',
82 'x64/stub-cache-x64.cc', 'x64/virtual-frame-x64.cc' 82 'x64/stub-cache-x64.cc', 'x64/virtual-frame-x64.cc'
83 ], 83 ],
84 'simulator:arm': ['arm/simulator-arm.cc'], 84 'simulator:arm': ['arm/simulator-arm.cc'],
85 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 85 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
86 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 86 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
87 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 87 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
88 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 88 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
89 'os:nullos': ['platform-nullos.cc'], 89 'os:nullos': ['platform-nullos.cc'],
90 'os:win32': ['platform-win32.cc'], 90 'os:win32': ['platform-win32.cc'],
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 190 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
191 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .']) 191 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .'])
192 else: 192 else:
193 snapshot_obj = empty_snapshot_obj 193 snapshot_obj = empty_snapshot_obj
194 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 194 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
195 return (library_objs, d8_objs, [mksnapshot]) 195 return (library_objs, d8_objs, [mksnapshot])
196 196
197 197
198 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 198 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
199 Return('library_objs d8_objs mksnapshot') 199 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « SConstruct ('k') | src/ia32/macro-assembler-ia32.cc » ('j') | src/regexp-macro-assembler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698