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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 ], | 88 ], |
89 'os:macos': [ | 89 'os:macos': [ |
90 'd8-posix.cc' | 90 'd8-posix.cc' |
91 ], | 91 ], |
92 'os:android': [ | 92 'os:android': [ |
93 'd8-posix.cc' | 93 'd8-posix.cc' |
94 ], | 94 ], |
95 'os:freebsd': [ | 95 'os:freebsd': [ |
96 'd8-posix.cc' | 96 'd8-posix.cc' |
97 ], | 97 ], |
98 'os:windows': [ | 98 'os:win32': [ |
99 'd8-windows.cc' | 99 'd8-windows.cc' |
100 ], | 100 ], |
101 'os:nullos': [ | 101 'os:nullos': [ |
102 'd8-windows.cc' # Empty implementation at the moment. | 102 'd8-windows.cc' # Empty implementation at the moment. |
103 ], | 103 ], |
104 'console:readline': [ | 104 'console:readline': [ |
105 'd8-readline.cc' | 105 'd8-readline.cc' |
106 ] | 106 ] |
107 } | 107 } |
108 | 108 |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) | 173 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) |
174 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) | 174 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=['
.']) |
175 else: | 175 else: |
176 snapshot_obj = empty_snapshot_obj | 176 snapshot_obj = empty_snapshot_obj |
177 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] | 177 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] |
178 return (library_objs, d8_objs, [mksnapshot]) | 178 return (library_objs, d8_objs, [mksnapshot]) |
179 | 179 |
180 | 180 |
181 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() | 181 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() |
182 Return('library_objs d8_objs mksnapshot') | 182 Return('library_objs d8_objs mksnapshot') |
OLD | NEW |