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

Side by Side Diff: src/SConscript

Issue 5166006: Untemplated preparser.h and made it depend on virtual types. (Closed)
Patch Set: Created 10 years, 1 month 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
« no previous file with comments | « no previous file | src/parser.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 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 jump-target.cc 82 jump-target.cc
83 liveedit.cc 83 liveedit.cc
84 log-utils.cc 84 log-utils.cc
85 log.cc 85 log.cc
86 mark-compact.cc 86 mark-compact.cc
87 messages.cc 87 messages.cc
88 objects.cc 88 objects.cc
89 objects-visiting.cc 89 objects-visiting.cc
90 oprofile-agent.cc 90 oprofile-agent.cc
91 parser.cc 91 parser.cc
92 preparser.cc
93 preparse-data.cc
92 profile-generator.cc 94 profile-generator.cc
93 property.cc 95 property.cc
94 regexp-macro-assembler-irregexp.cc 96 regexp-macro-assembler-irregexp.cc
95 regexp-macro-assembler.cc 97 regexp-macro-assembler.cc
96 regexp-stack.cc 98 regexp-stack.cc
97 register-allocator.cc 99 register-allocator.cc
98 rewriter.cc 100 rewriter.cc
99 runtime.cc 101 runtime.cc
100 scanner-base.cc 102 scanner-base.cc
101 scanner.cc 103 scanner.cc
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 snapshot_cc = 'snapshot.cc' 326 snapshot_cc = 'snapshot.cc'
325 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 327 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
326 else: 328 else:
327 snapshot_obj = empty_snapshot_obj 329 snapshot_obj = empty_snapshot_obj
328 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 330 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
329 return (library_objs, d8_objs, [mksnapshot]) 331 return (library_objs, d8_objs, [mksnapshot])
330 332
331 333
332 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 334 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
333 Return('library_objs d8_objs mksnapshot') 335 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « no previous file | src/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698