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

Side by Side Diff: src/SConscript

Issue 1094014: Merge the partial_snapshots branch back into bleeding_edge. For... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
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
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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 245
246 LIBRARY_FILES = ''' 246 LIBRARY_FILES = '''
247 runtime.js 247 runtime.js
248 v8natives.js 248 v8natives.js
249 array.js 249 array.js
250 string.js 250 string.js
251 uri.js 251 uri.js
252 math.js 252 math.js
253 messages.js 253 messages.js
254 apinatives.js 254 apinatives.js
255 debug-delay.js 255 date.js
256 liveedit-delay.js 256 regexp.js
257 mirror-delay.js 257 json.js
258 date-delay.js 258 liveedit-debugger.js
259 regexp-delay.js 259 mirror-debugger.js
260 json-delay.js 260 debug-debugger.js
Erik Corry 2010/03/23 12:01:50 We will break the other builds unless we do this o
261 '''.split() 261 '''.split()
262 262
263 263
264 def Abort(message): 264 def Abort(message):
265 print message 265 print message
266 sys.exit(1) 266 sys.exit(1)
267 267
268 268
269 def ConfigureObjectFiles(): 269 def ConfigureObjectFiles():
270 env = Environment() 270 env = Environment()
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 snapshot_cc = Command('snapshot.cc', [], []) 310 snapshot_cc = Command('snapshot.cc', [], [])
311 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 311 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
312 else: 312 else:
313 snapshot_obj = empty_snapshot_obj 313 snapshot_obj = empty_snapshot_obj
314 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 314 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
315 return (library_objs, d8_objs, [mksnapshot]) 315 return (library_objs, d8_objs, [mksnapshot])
316 316
317 317
318 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 318 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
319 Return('library_objs d8_objs mksnapshot') 319 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « include/v8.h ('k') | src/apinatives.js » ('j') | src/arm/stub-cache-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698