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

Side by Side Diff: src/SConscript

Issue 99186: Create build structure for X64. (Closed)
Patch Set: Created 11 years, 7 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
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', 'virtual-frame.cc', 'zone.cc'
54 ], 54 ],
55 'arch:arm': [ 55 'arch:arm': [
56 'arm/assembler-arm.cc', 'arm/builtins-arm.cc', 56 'arm/assembler-arm.cc', 'arm/builtins-arm.cc',
57 'arm/codegen-arm.cc', 'arm/cpu-arm.cc', 'arm/disasm-arm.cc', 57 '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', 58 'arm/debug-arm.cc', 'arm/frames-arm.cc', 'arm/ic-arm.cc',
59 'arm/jump-target-arm.cc', 'arm/macro-assembler-arm.cc', 59 'arm/jump-target-arm.cc', 'arm/macro-assembler-arm.cc',
60 'arm/regexp-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/virtual-frame-arm.cc'
62 ], 63 ],
63 'arch:ia32': [ 64 'arch:ia32': [
64 'ia32/assembler-ia32.cc', 'ia32/builtins-ia32.cc', 65 'ia32/assembler-ia32.cc', 'ia32/builtins-ia32.cc',
65 'ia32/codegen-ia32.cc', 'ia32/cpu-ia32.cc', 'ia32/disasm-ia32.cc', 66 'ia32/codegen-ia32.cc', 'ia32/cpu-ia32.cc', 'ia32/disasm-ia32.cc',
66 'ia32/debug-ia32.cc', 'ia32/frames-ia32.cc', 'ia32/ic-ia32.cc', 67 'ia32/debug-ia32.cc', 'ia32/frames-ia32.cc', 'ia32/ic-ia32.cc',
67 'ia32/jump-target-ia32.cc', 'ia32/macro-assembler-ia32.cc', 68 'ia32/jump-target-ia32.cc', 'ia32/macro-assembler-ia32.cc',
69 'ia32/regexp-macro-assembler-ia32.cc',
68 'ia32/register-allocator-ia32.cc', 'ia32/stub-cache-ia32.cc', 70 'ia32/register-allocator-ia32.cc', 'ia32/stub-cache-ia32.cc',
69 'ia32/regexp-macro-assembler-ia32.cc', 'ia32/virtual-frame-ia32.cc' 71 'ia32/virtual-frame-ia32.cc'
72 ],
73 'arch:x64': [
74 'x64/assembler-x64.cc', 'x64/builtins-x64.cc',
75 'x64/codegen-x64.cc', 'x64/cpu-x64.cc', 'x64/disasm-x64.cc',
76 'x64/debug-x64.cc', 'x64/frames-x64.cc', 'x64/ic-x64.cc',
77 'x64/jump-target-x64.cc', 'x64/macro-assembler-x64.cc',
78 # 'x64/regexp-macro-assembler-x64.cc',
Mads Ager (chromium) 2009/04/29 12:27:24 Since none of the files exist yet anyway, why is t
Lasse Reichstein 2009/04/29 13:05:41 Because we can actually do without it. The test fo
79 'x64/stub-cache-x64.cc'
70 ], 80 ],
71 'simulator:arm': ['arm/simulator-arm.cc'], 81 'simulator:arm': ['arm/simulator-arm.cc'],
72 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 82 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
73 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 83 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
74 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 84 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
75 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 85 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
76 'os:nullos': ['platform-nullos.cc'], 86 'os:nullos': ['platform-nullos.cc'],
77 'os:win32': ['platform-win32.cc'], 87 'os:win32': ['platform-win32.cc'],
78 'mode:release': [], 88 'mode:release': [],
79 'mode:debug': [ 89 'mode:debug': [
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 187 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
178 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .']) 188 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .'])
179 else: 189 else:
180 snapshot_obj = empty_snapshot_obj 190 snapshot_obj = empty_snapshot_obj
181 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 191 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
182 return (library_objs, d8_objs, [mksnapshot]) 192 return (library_objs, d8_objs, [mksnapshot])
183 193
184 194
185 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 195 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
186 Return('library_objs d8_objs mksnapshot') 196 Return('library_objs d8_objs mksnapshot')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698