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

Side by Side Diff: src/SConscript

Issue 12296026: ES6 symbols: Implement Symbol intrinsic and basic functionality (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed more comments Created 7 years, 9 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/arm/builtins-arm.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 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 date.js 319 date.js
320 regexp.js 320 regexp.js
321 json.js 321 json.js
322 liveedit-debugger.js 322 liveedit-debugger.js
323 mirror-debugger.js 323 mirror-debugger.js
324 debug-debugger.js 324 debug-debugger.js
325 '''.split() 325 '''.split()
326 326
327 327
328 EXPERIMENTAL_LIBRARY_FILES = ''' 328 EXPERIMENTAL_LIBRARY_FILES = '''
329 symbol.js
329 proxy.js 330 proxy.js
330 collection.js 331 collection.js
331 '''.split() 332 '''.split()
332 333
333 334
334 def Abort(message): 335 def Abort(message):
335 print message 336 print message
336 sys.exit(1) 337 sys.exit(1)
337 338
338 339
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 snapshot_cc = 'snapshot.cc' 403 snapshot_cc = 'snapshot.cc'
403 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 404 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
404 else: 405 else:
405 snapshot_obj = empty_snapshot_obj 406 snapshot_obj = empty_snapshot_obj
406 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj, snapshot_obj] 407 library_objs = [non_snapshot_files, libraries_obj, experimental_libraries_obj, snapshot_obj]
407 return (library_objs, d8_objs, [mksnapshot], preparser_objs) 408 return (library_objs, d8_objs, [mksnapshot], preparser_objs)
408 409
409 410
410 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles() 411 (library_objs, d8_objs, mksnapshot, preparser_objs) = ConfigureObjectFiles()
411 Return('library_objs d8_objs mksnapshot preparser_objs') 412 Return('library_objs d8_objs mksnapshot preparser_objs')
OLDNEW
« no previous file with comments | « no previous file | src/arm/builtins-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698