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

Side by Side Diff: src/v8.gyp

Issue 2645313003: [async-iteration] implement Async-from-Sync Iterator (Closed)
Patch Set: rebase Created 3 years, 10 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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 'bignum.h', 473 'bignum.h',
474 'bit-vector.cc', 474 'bit-vector.cc',
475 'bit-vector.h', 475 'bit-vector.h',
476 'bootstrapper.cc', 476 'bootstrapper.cc',
477 'bootstrapper.h', 477 'bootstrapper.h',
478 'builtins/builtins-api.cc', 478 'builtins/builtins-api.cc',
479 'builtins/builtins-arguments.cc', 479 'builtins/builtins-arguments.cc',
480 'builtins/builtins-arguments.h', 480 'builtins/builtins-arguments.h',
481 'builtins/builtins-arraybuffer.cc', 481 'builtins/builtins-arraybuffer.cc',
482 'builtins/builtins-array.cc', 482 'builtins/builtins-array.cc',
483 'builtins/builtins-async-iterator.cc',
483 'builtins/builtins-async-function.cc', 484 'builtins/builtins-async-function.cc',
484 'builtins/builtins-async.cc', 485 'builtins/builtins-async.cc',
485 'builtins/builtins-async.h', 486 'builtins/builtins-async.h',
486 'builtins/builtins-boolean.cc', 487 'builtins/builtins-boolean.cc',
487 'builtins/builtins-call.cc', 488 'builtins/builtins-call.cc',
488 'builtins/builtins-callsite.cc', 489 'builtins/builtins-callsite.cc',
489 'builtins/builtins-conversion.cc', 490 'builtins/builtins-conversion.cc',
490 'builtins/builtins-constructor.cc', 491 'builtins/builtins-constructor.cc',
491 'builtins/builtins-constructor.h', 492 'builtins/builtins-constructor.h',
492 'builtins/builtins-dataview.cc', 493 'builtins/builtins-dataview.cc',
(...skipping 2011 matching lines...) Expand 10 before | Expand all | Expand 10 after
2504 'conditions': [ 2505 'conditions': [
2505 ['want_separate_host_toolset_mkpeephole==1', { 2506 ['want_separate_host_toolset_mkpeephole==1', {
2506 'toolsets': ['host'], 2507 'toolsets': ['host'],
2507 }, { 2508 }, {
2508 'toolsets': ['target'], 2509 'toolsets': ['target'],
2509 }], 2510 }],
2510 ], 2511 ],
2511 }, 2512 },
2512 ], 2513 ],
2513 } 2514 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698