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

Side by Side Diff: src/SConscript

Issue 57050: Fix developer shell build on Windows (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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/d8.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 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
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
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')
OLDNEW
« no previous file with comments | « no previous file | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698