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

Side by Side Diff: src/SConscript

Issue 844006: Merge changes up to V8 version 2.1.3 into the partial snapshots (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/partial_snapshots/
Patch Set: Created 10 years, 9 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 | « include/v8.h ('k') | src/accessors.cc » ('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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 scopeinfo.cc 90 scopeinfo.cc
91 scopes.cc 91 scopes.cc
92 serialize.cc 92 serialize.cc
93 snapshot-common.cc 93 snapshot-common.cc
94 spaces.cc 94 spaces.cc
95 string-stream.cc 95 string-stream.cc
96 stub-cache.cc 96 stub-cache.cc
97 token.cc 97 token.cc
98 top.cc 98 top.cc
99 unicode.cc 99 unicode.cc
100 usage-analyzer.cc
101 utils.cc 100 utils.cc
102 v8-counters.cc 101 v8-counters.cc
103 v8.cc 102 v8.cc
104 v8threads.cc 103 v8threads.cc
105 variables.cc 104 variables.cc
106 version.cc 105 version.cc
107 virtual-frame.cc 106 virtual-frame.cc
108 zone.cc 107 zone.cc
109 """), 108 """),
110 'arch:arm': Split(""" 109 'arch:arm': Split("""
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 v8natives.js 243 v8natives.js
245 array.js 244 array.js
246 string.js 245 string.js
247 uri.js 246 uri.js
248 math.js 247 math.js
249 messages.js 248 messages.js
250 apinatives.js 249 apinatives.js
251 date.js 250 date.js
252 regexp.js 251 regexp.js
253 json.js 252 json.js
253 liveedit-debugger.js
254 mirror-debugger.js 254 mirror-debugger.js
255 debug-debugger.js 255 debug-debugger.js
256 '''.split() 256 '''.split()
257 257
258 258
259 def Abort(message): 259 def Abort(message):
260 print message 260 print message
261 sys.exit(1) 261 sys.exit(1)
262 262
263 263
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 snapshot_cc = Command('snapshot.cc', [], []) 305 snapshot_cc = Command('snapshot.cc', [], [])
306 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 306 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
307 else: 307 else:
308 snapshot_obj = empty_snapshot_obj 308 snapshot_obj = empty_snapshot_obj
309 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 309 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
310 return (library_objs, d8_objs, [mksnapshot]) 310 return (library_objs, d8_objs, [mksnapshot])
311 311
312 312
313 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 313 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
314 Return('library_objs d8_objs mksnapshot') 314 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/accessors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698