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

Side by Side Diff: src/SConscript

Issue 9447052: Add CallOnce() and simple LazyInstance implementation. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Lint. Created 8 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 | « no previous file | src/lazy-instance.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 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 lithium.cc 93 lithium.cc
94 liveedit.cc 94 liveedit.cc
95 liveobjectlist.cc 95 liveobjectlist.cc
96 log-utils.cc 96 log-utils.cc
97 log.cc 97 log.cc
98 mark-compact.cc 98 mark-compact.cc
99 messages.cc 99 messages.cc
100 objects.cc 100 objects.cc
101 objects-printer.cc 101 objects-printer.cc
102 objects-visiting.cc 102 objects-visiting.cc
103 once.cc
103 parser.cc 104 parser.cc
104 preparser.cc 105 preparser.cc
105 preparse-data.cc 106 preparse-data.cc
106 profile-generator.cc 107 profile-generator.cc
107 property.cc 108 property.cc
108 regexp-macro-assembler-irregexp.cc 109 regexp-macro-assembler-irregexp.cc
109 regexp-macro-assembler.cc 110 regexp-macro-assembler.cc
110 regexp-stack.cc 111 regexp-stack.cc
111 rewriter.cc 112 rewriter.cc
112 runtime.cc 113 runtime.cc
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 snapshot_cc = 'snapshot.cc' 400 snapshot_cc = 'snapshot.cc'
400 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 401 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
401 else: 402 else:
402 snapshot_obj = empty_snapshot_obj 403 snapshot_obj = empty_snapshot_obj
403 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj, snapshot_obj] 404 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj, snapshot_obj]
404 return (library_objs, d8_objs, [mksnapshot], preparser_objs) 405 return (library_objs, d8_objs, [mksnapshot], preparser_objs)
405 406
406 407
407 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() 408 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles()
408 Return('library_objs d8_objs mksnapshot preparser_objs') 409 Return('library_objs d8_objs mksnapshot preparser_objs')
OLDNEW
« no previous file with comments | « no previous file | src/lazy-instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698