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

Side by Side Diff: src/SConscript

Issue 6364002: Adding build script changes to support LiveObjectList functionality. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 11 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') | tools/gyp/v8.gyp » ('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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 hydrogen.cc 82 hydrogen.cc
83 hydrogen-instructions.cc 83 hydrogen-instructions.cc
84 ic.cc 84 ic.cc
85 inspector.cc 85 inspector.cc
86 interpreter-irregexp.cc 86 interpreter-irregexp.cc
87 jsregexp.cc 87 jsregexp.cc
88 jump-target.cc 88 jump-target.cc
89 lithium-allocator.cc 89 lithium-allocator.cc
90 lithium.cc 90 lithium.cc
91 liveedit.cc 91 liveedit.cc
92 liveobjectlist.cc
92 log-utils.cc 93 log-utils.cc
93 log.cc 94 log.cc
94 mark-compact.cc 95 mark-compact.cc
95 messages.cc 96 messages.cc
96 objects.cc 97 objects.cc
97 objects-visiting.cc 98 objects-visiting.cc
98 oprofile-agent.cc 99 oprofile-agent.cc
99 parser.cc 100 parser.cc
100 preparser.cc 101 preparser.cc
101 preparse-data.cc 102 preparse-data.cc
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 snapshot_cc = 'snapshot.cc' 343 snapshot_cc = 'snapshot.cc'
343 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 344 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
344 else: 345 else:
345 snapshot_obj = empty_snapshot_obj 346 snapshot_obj = empty_snapshot_obj
346 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 347 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
347 return (library_objs, d8_objs, [mksnapshot]) 348 return (library_objs, d8_objs, [mksnapshot])
348 349
349 350
350 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 351 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
351 Return('library_objs d8_objs mksnapshot') 352 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « SConstruct ('k') | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698