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

Side by Side Diff: src/v8.gyp

Issue 2348493003: [builtins] move String.prototype[@@iterator] to C++ builtin (Closed)
Patch Set: V5 (try to make gcmole happy) Created 4 years, 3 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
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 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 'builtins/builtins-dataview.cc', 495 'builtins/builtins-dataview.cc',
496 'builtins/builtins-date.cc', 496 'builtins/builtins-date.cc',
497 'builtins/builtins-debug.cc', 497 'builtins/builtins-debug.cc',
498 'builtins/builtins-error.cc', 498 'builtins/builtins-error.cc',
499 'builtins/builtins-function.cc', 499 'builtins/builtins-function.cc',
500 'builtins/builtins-generator.cc', 500 'builtins/builtins-generator.cc',
501 'builtins/builtins-global.cc', 501 'builtins/builtins-global.cc',
502 'builtins/builtins-handler.cc', 502 'builtins/builtins-handler.cc',
503 'builtins/builtins-internal.cc', 503 'builtins/builtins-internal.cc',
504 'builtins/builtins-interpreter.cc', 504 'builtins/builtins-interpreter.cc',
505 'builtins/builtins-iterator.cc',
505 'builtins/builtins-json.cc', 506 'builtins/builtins-json.cc',
506 'builtins/builtins-math.cc', 507 'builtins/builtins-math.cc',
507 'builtins/builtins-number.cc', 508 'builtins/builtins-number.cc',
508 'builtins/builtins-object.cc', 509 'builtins/builtins-object.cc',
509 'builtins/builtins-proxy.cc', 510 'builtins/builtins-proxy.cc',
510 'builtins/builtins-reflect.cc', 511 'builtins/builtins-reflect.cc',
511 'builtins/builtins-sharedarraybuffer.cc', 512 'builtins/builtins-sharedarraybuffer.cc',
512 'builtins/builtins-string.cc', 513 'builtins/builtins-string.cc',
513 'builtins/builtins-symbol.cc', 514 'builtins/builtins-symbol.cc',
514 'builtins/builtins-typedarray.cc', 515 'builtins/builtins-typedarray.cc',
(...skipping 1687 matching lines...) Expand 10 before | Expand all | Expand 10 after
2202 'js/prologue.js', 2203 'js/prologue.js',
2203 'js/runtime.js', 2204 'js/runtime.js',
2204 'js/v8natives.js', 2205 'js/v8natives.js',
2205 'js/symbol.js', 2206 'js/symbol.js',
2206 'js/array.js', 2207 'js/array.js',
2207 'js/string.js', 2208 'js/string.js',
2208 'js/math.js', 2209 'js/math.js',
2209 'js/regexp.js', 2210 'js/regexp.js',
2210 'js/arraybuffer.js', 2211 'js/arraybuffer.js',
2211 'js/typedarray.js', 2212 'js/typedarray.js',
2212 'js/iterator-prototype.js',
2213 'js/collection.js', 2213 'js/collection.js',
2214 'js/weak-collection.js', 2214 'js/weak-collection.js',
2215 'js/collection-iterator.js', 2215 'js/collection-iterator.js',
2216 'js/promise.js', 2216 'js/promise.js',
2217 'js/messages.js', 2217 'js/messages.js',
2218 'js/array-iterator.js', 2218 'js/array-iterator.js',
2219 'js/string-iterator.js',
2220 'js/templates.js', 2219 'js/templates.js',
2221 'js/spread.js', 2220 'js/spread.js',
2222 'js/proxy.js', 2221 'js/proxy.js',
2223 'debug/mirrors.js', 2222 'debug/mirrors.js',
2224 'debug/debug.js', 2223 'debug/debug.js',
2225 'debug/liveedit.js', 2224 'debug/liveedit.js',
2226 ], 2225 ],
2227 'experimental_library_files': [ 2226 'experimental_library_files': [
2228 'js/macros.py', 2227 'js/macros.py',
2229 'messages.h', 2228 'messages.h',
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
2448 'conditions': [ 2447 'conditions': [
2449 ['want_separate_host_toolset_mkpeephole==1', { 2448 ['want_separate_host_toolset_mkpeephole==1', {
2450 'toolsets': ['host'], 2449 'toolsets': ['host'],
2451 }, { 2450 }, {
2452 'toolsets': ['target'], 2451 'toolsets': ['target'],
2453 }], 2452 }],
2454 ], 2453 ],
2455 }, 2454 },
2456 ], 2455 ],
2457 } 2456 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698