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

Side by Side Diff: src/SConscript

Issue 9836108: Rollback of r11015, r11014, r11011, r11010 in trunk branch. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Finish file upload Created 8 years, 8 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/api.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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 lithium.cc 94 lithium.cc
95 liveedit.cc 95 liveedit.cc
96 liveobjectlist.cc 96 liveobjectlist.cc
97 log-utils.cc 97 log-utils.cc
98 log.cc 98 log.cc
99 mark-compact.cc 99 mark-compact.cc
100 messages.cc 100 messages.cc
101 objects.cc 101 objects.cc
102 objects-printer.cc 102 objects-printer.cc
103 objects-visiting.cc 103 objects-visiting.cc
104 once.cc
105 parser.cc 104 parser.cc
106 preparser.cc 105 preparser.cc
107 preparse-data.cc 106 preparse-data.cc
108 profile-generator.cc 107 profile-generator.cc
109 property.cc 108 property.cc
110 regexp-macro-assembler-irregexp.cc 109 regexp-macro-assembler-irregexp.cc
111 regexp-macro-assembler.cc 110 regexp-macro-assembler.cc
112 regexp-stack.cc 111 regexp-stack.cc
113 rewriter.cc 112 rewriter.cc
114 runtime.cc 113 runtime.cc
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 snapshot_cc = 'snapshot.cc' 399 snapshot_cc = 'snapshot.cc'
401 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 400 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
402 else: 401 else:
403 snapshot_obj = empty_snapshot_obj 402 snapshot_obj = empty_snapshot_obj
404 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj, snapshot_obj] 403 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj, snapshot_obj]
405 return (library_objs, d8_objs, [mksnapshot], preparser_objs) 404 return (library_objs, d8_objs, [mksnapshot], preparser_objs)
406 405
407 406
408 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() 407 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles()
409 Return('library_objs d8_objs mksnapshot preparser_objs') 408 Return('library_objs d8_objs mksnapshot preparser_objs')
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698