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

Side by Side Diff: src/v8.gyp

Issue 2645313003: [async-iteration] implement Async-from-Sync Iterator (Closed)
Patch Set: attempt #3 to fix merge conflicts Created 3 years, 11 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-dtoa.h', 473 'bignum-dtoa.h',
474 'bignum.cc', 474 'bignum.cc',
475 'bignum.h', 475 'bignum.h',
476 'bit-vector.cc', 476 'bit-vector.cc',
477 'bit-vector.h', 477 'bit-vector.h',
478 'bootstrapper.cc', 478 'bootstrapper.cc',
479 'bootstrapper.h', 479 'bootstrapper.h',
480 'builtins/builtins-api.cc', 480 'builtins/builtins-api.cc',
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 2007 matching lines...) Expand 10 before | Expand all | Expand 10 after
2500 'conditions': [ 2501 'conditions': [
2501 ['want_separate_host_toolset_mkpeephole==1', { 2502 ['want_separate_host_toolset_mkpeephole==1', {
2502 'toolsets': ['host'], 2503 'toolsets': ['host'],
2503 }, { 2504 }, {
2504 'toolsets': ['target'], 2505 'toolsets': ['target'],
2505 }], 2506 }],
2506 ], 2507 ],
2507 }, 2508 },
2508 ], 2509 ],
2509 } 2510 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698