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

Side by Side Diff: src/SConscript

Issue 92068: Move backend specific files to separate directories. (Closed)
Patch Set: Added CPPPATH flag and made all includes use same base path. Created 11 years, 8 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
« no previous file with comments | « SConstruct ('k') | src/arm/assembler-arm.h » ('j') | no next file with comments »
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
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', 'virtual-frame.cc', 'zone.cc'
54 ], 54 ],
55 'arch:arm': [ 55 'arch:arm': [
56 'assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', 'cpu-arm.cc', 56 'arm/assembler-arm.cc', 'arm/builtins-arm.cc',
57 'disasm-arm.cc', 'debug-arm.cc', 'frames-arm.cc', 'ic-arm.cc', 57 'arm/codegen-arm.cc', 'arm/cpu-arm.cc', 'arm/disasm-arm.cc',
58 'jump-target-arm.cc', 'macro-assembler-arm.cc', 58 'arm/debug-arm.cc', 'arm/frames-arm.cc', 'arm/ic-arm.cc',
59 'regexp-macro-assembler-arm.cc', 'register-allocator-arm.cc', 59 'arm/jump-target-arm.cc', 'arm/macro-assembler-arm.cc',
60 'stub-cache-arm.cc', 'virtual-frame-arm.cc' 60 'arm/register-allocator-arm.cc', 'arm/stub-cache-arm.cc',
61 'arm/regexp-macro-assembler-arm.cc', 'arm/virtual-frame-arm.cc'
61 ], 62 ],
62 'arch:ia32': [ 63 'arch:ia32': [
63 'assembler-ia32.cc', 'builtins-ia32.cc', 'codegen-ia32.cc', 64 'ia32/assembler-ia32.cc', 'ia32/builtins-ia32.cc',
64 'cpu-ia32.cc', 'disasm-ia32.cc', 'debug-ia32.cc', 'frames-ia32.cc', 65 'ia32/codegen-ia32.cc', 'ia32/cpu-ia32.cc', 'ia32/disasm-ia32.cc',
65 'ic-ia32.cc', 'jump-target-ia32.cc', 'macro-assembler-ia32.cc', 66 'ia32/debug-ia32.cc', 'ia32/frames-ia32.cc', 'ia32/ic-ia32.cc',
66 'regexp-macro-assembler-ia32.cc', 'register-allocator-ia32.cc', 67 'ia32/jump-target-ia32.cc', 'ia32/macro-assembler-ia32.cc',
67 'stub-cache-ia32.cc', 'virtual-frame-ia32.cc' 68 'ia32/register-allocator-ia32.cc', 'ia32/stub-cache-ia32.cc',
69 'ia32/regexp-macro-assembler-ia32.cc', 'ia32/virtual-frame-ia32.cc'
68 ], 70 ],
69 'simulator:arm': ['simulator-arm.cc'], 71 'simulator:arm': ['arm/simulator-arm.cc'],
70 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 72 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
71 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 73 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
72 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 74 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
73 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 75 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
74 'os:nullos': ['platform-nullos.cc'], 76 'os:nullos': ['platform-nullos.cc'],
75 'os:win32': ['platform-win32.cc'], 77 'os:win32': ['platform-win32.cc'],
76 'mode:release': [], 78 'mode:release': [],
77 'mode:debug': [ 79 'mode:debug': [
78 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc' 80 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc'
79 ] 81 ]
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 176 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
175 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .']) 177 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .'])
176 else: 178 else:
177 snapshot_obj = empty_snapshot_obj 179 snapshot_obj = empty_snapshot_obj
178 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 180 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
179 return (library_objs, d8_objs, [mksnapshot]) 181 return (library_objs, d8_objs, [mksnapshot])
180 182
181 183
182 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 184 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
183 Return('library_objs d8_objs mksnapshot') 185 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « SConstruct ('k') | src/arm/assembler-arm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698