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

Side by Side Diff: src/v8.gyp

Issue 2643023002: [async-await] Move remaining async-await code to TF (Closed)
Patch Set: Typo 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 2246 matching lines...) Expand 10 before | Expand all | Expand 10 after
2257 'js/arraybuffer.js', 2257 'js/arraybuffer.js',
2258 'js/typedarray.js', 2258 'js/typedarray.js',
2259 'js/collection.js', 2259 'js/collection.js',
2260 'js/weak-collection.js', 2260 'js/weak-collection.js',
2261 'js/collection-iterator.js', 2261 'js/collection-iterator.js',
2262 'js/promise.js', 2262 'js/promise.js',
2263 'js/messages.js', 2263 'js/messages.js',
2264 'js/templates.js', 2264 'js/templates.js',
2265 'js/spread.js', 2265 'js/spread.js',
2266 'js/proxy.js', 2266 'js/proxy.js',
2267 'js/async-await.js',
2268 'js/harmony-string-padding.js', 2267 'js/harmony-string-padding.js',
2269 'debug/mirrors.js', 2268 'debug/mirrors.js',
2270 'debug/debug.js', 2269 'debug/debug.js',
2271 'debug/liveedit.js', 2270 'debug/liveedit.js',
2272 ], 2271 ],
2273 'experimental_library_files': [ 2272 'experimental_library_files': [
2274 'js/macros.py', 2273 'js/macros.py',
2275 'messages.h', 2274 'messages.h',
2276 'js/harmony-atomics.js', 2275 'js/harmony-atomics.js',
2277 'js/harmony-simd.js', 2276 'js/harmony-simd.js',
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
2500 'conditions': [ 2499 'conditions': [
2501 ['want_separate_host_toolset_mkpeephole==1', { 2500 ['want_separate_host_toolset_mkpeephole==1', {
2502 'toolsets': ['host'], 2501 'toolsets': ['host'],
2503 }, { 2502 }, {
2504 'toolsets': ['target'], 2503 'toolsets': ['target'],
2505 }], 2504 }],
2506 ], 2505 ],
2507 }, 2506 },
2508 ], 2507 ],
2509 } 2508 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698