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

Side by Side Diff: src/SConscript

Issue 554131: Enable assertions and debugging code in the release... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/issue555/
Patch Set: Created 10 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « SConstruct ('k') | src/flag-definitions.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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 unicode.cc 97 unicode.cc
98 usage-analyzer.cc 98 usage-analyzer.cc
99 utils.cc 99 utils.cc
100 v8-counters.cc 100 v8-counters.cc
101 v8.cc 101 v8.cc
102 v8threads.cc 102 v8threads.cc
103 variables.cc 103 variables.cc
104 version.cc 104 version.cc
105 virtual-frame.cc 105 virtual-frame.cc
106 zone.cc 106 zone.cc
107
108 objects-debug.cc
109 prettyprinter.cc
110 regexp-macro-assembler-tracer.cc
107 """), 111 """),
108 'arch:arm': Split(""" 112 'arch:arm': Split("""
109 arm/builtins-arm.cc 113 arm/builtins-arm.cc
110 arm/codegen-arm.cc 114 arm/codegen-arm.cc
111 arm/constants-arm.cc 115 arm/constants-arm.cc
112 arm/cpu-arm.cc 116 arm/cpu-arm.cc
113 arm/debug-arm.cc 117 arm/debug-arm.cc
114 arm/disasm-arm.cc 118 arm/disasm-arm.cc
115 arm/fast-codegen-arm.cc 119 arm/fast-codegen-arm.cc
116 arm/frames-arm.cc 120 arm/frames-arm.cc
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 """), 168 """),
165 'simulator:arm': ['arm/simulator-arm.cc'], 169 'simulator:arm': ['arm/simulator-arm.cc'],
166 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'], 170 'os:freebsd': ['platform-freebsd.cc', 'platform-posix.cc'],
167 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'], 171 'os:openbsd': ['platform-openbsd.cc', 'platform-posix.cc'],
168 'os:linux': ['platform-linux.cc', 'platform-posix.cc'], 172 'os:linux': ['platform-linux.cc', 'platform-posix.cc'],
169 'os:android': ['platform-linux.cc', 'platform-posix.cc'], 173 'os:android': ['platform-linux.cc', 'platform-posix.cc'],
170 'os:macos': ['platform-macos.cc', 'platform-posix.cc'], 174 'os:macos': ['platform-macos.cc', 'platform-posix.cc'],
171 'os:nullos': ['platform-nullos.cc'], 175 'os:nullos': ['platform-nullos.cc'],
172 'os:win32': ['platform-win32.cc'], 176 'os:win32': ['platform-win32.cc'],
173 'mode:release': [], 177 'mode:release': [],
174 'mode:debug': [ 178 'mode:debug': []
175 'objects-debug.cc', 'prettyprinter.cc', 'regexp-macro-assembler-tracer.cc'
176 ]
177 } 179 }
178 180
179 181
180 D8_FILES = { 182 D8_FILES = {
181 'all': [ 183 'all': [
182 'd8.cc', 'd8-debug.cc' 184 'd8.cc', 'd8-debug.cc'
183 ], 185 ],
184 'os:linux': [ 186 'os:linux': [
185 'd8-posix.cc' 187 'd8-posix.cc'
186 ], 188 ],
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 snapshot_cc = Command('snapshot.cc', [], []) 276 snapshot_cc = Command('snapshot.cc', [], [])
275 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 277 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
276 else: 278 else:
277 snapshot_obj = empty_snapshot_obj 279 snapshot_obj = empty_snapshot_obj
278 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 280 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
279 return (library_objs, d8_objs, [mksnapshot]) 281 return (library_objs, d8_objs, [mksnapshot])
280 282
281 283
282 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 284 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
283 Return('library_objs d8_objs mksnapshot') 285 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « SConstruct ('k') | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698