OLD | NEW |
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 scopeinfo.cc | 90 scopeinfo.cc |
91 scopes.cc | 91 scopes.cc |
92 serialize.cc | 92 serialize.cc |
93 snapshot-common.cc | 93 snapshot-common.cc |
94 spaces.cc | 94 spaces.cc |
95 string-stream.cc | 95 string-stream.cc |
96 stub-cache.cc | 96 stub-cache.cc |
97 token.cc | 97 token.cc |
98 top.cc | 98 top.cc |
99 unicode.cc | 99 unicode.cc |
100 usage-analyzer.cc | |
101 utils.cc | 100 utils.cc |
102 v8-counters.cc | 101 v8-counters.cc |
103 v8.cc | 102 v8.cc |
104 v8threads.cc | 103 v8threads.cc |
105 variables.cc | 104 variables.cc |
106 version.cc | 105 version.cc |
107 virtual-frame.cc | 106 virtual-frame.cc |
108 zone.cc | 107 zone.cc |
109 """), | 108 """), |
110 'arch:arm': Split(""" | 109 'arch:arm': Split(""" |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 snapshot_cc = Command('snapshot.cc', [], []) | 305 snapshot_cc = Command('snapshot.cc', [], []) |
307 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 306 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
308 else: | 307 else: |
309 snapshot_obj = empty_snapshot_obj | 308 snapshot_obj = empty_snapshot_obj |
310 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 309 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
311 return (library_objs, d8_objs, [mksnapshot]) | 310 return (library_objs, d8_objs, [mksnapshot]) |
312 | 311 |
313 | 312 |
314 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 313 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
315 Return('library_objs d8_objs mksnapshot') | 314 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |