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

Side by Side Diff: src/SConscript

Issue 93066: Built-in JSON support (Closed)
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
« no previous file with comments | « no previous file | src/arm/ic-arm.cc » ('j') | src/arm/ic-arm.cc » ('J')
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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 array.js 116 array.js
117 string.js 117 string.js
118 uri.js 118 uri.js
119 math.js 119 math.js
120 messages.js 120 messages.js
121 apinatives.js 121 apinatives.js
122 debug-delay.js 122 debug-delay.js
123 mirror-delay.js 123 mirror-delay.js
124 date-delay.js 124 date-delay.js
125 regexp-delay.js 125 regexp-delay.js
126 json-delay.js
126 '''.split() 127 '''.split()
127 128
128 129
129 def Abort(message): 130 def Abort(message):
130 print message 131 print message
131 sys.exit(1) 132 sys.exit(1)
132 133
133 134
134 def ConfigureObjectFiles(): 135 def ConfigureObjectFiles():
135 env = Environment() 136 env = Environment()
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 177 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
177 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .']) 178 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .'])
178 else: 179 else:
179 snapshot_obj = empty_snapshot_obj 180 snapshot_obj = empty_snapshot_obj
180 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 181 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
181 return (library_objs, d8_objs, [mksnapshot]) 182 return (library_objs, d8_objs, [mksnapshot])
182 183
183 184
184 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 185 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
185 Return('library_objs d8_objs mksnapshot') 186 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « no previous file | src/arm/ic-arm.cc » ('j') | src/arm/ic-arm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698