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

Side by Side Diff: src/v8.gyp

Issue 1895603002: [esnext] prototype runtime implementation for async functions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@AsyncFunction
Patch Set: some misc fixes + update the new v8.gyp too Created 4 years, 8 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 2008 matching lines...) Expand 10 before | Expand all | Expand 10 after
2019 'js/macros.py', 2019 'js/macros.py',
2020 'messages.h', 2020 'messages.h',
2021 'js/harmony-atomics.js', 2021 'js/harmony-atomics.js',
2022 'js/harmony-regexp-exec.js', 2022 'js/harmony-regexp-exec.js',
2023 'js/harmony-sharedarraybuffer.js', 2023 'js/harmony-sharedarraybuffer.js',
2024 'js/harmony-simd.js', 2024 'js/harmony-simd.js',
2025 'js/harmony-species.js', 2025 'js/harmony-species.js',
2026 'js/harmony-unicode-regexps.js', 2026 'js/harmony-unicode-regexps.js',
2027 'js/harmony-string-padding.js', 2027 'js/harmony-string-padding.js',
2028 'js/promise-extra.js', 2028 'js/promise-extra.js',
2029 'js/harmony-async-await.js'
2029 ], 2030 ],
2030 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 2031 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
2031 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 2032 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
2032 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin', 2033 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin',
2033 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/li braries-experimental-extras.bin', 2034 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/li braries-experimental-extras.bin',
2034 }, 2035 },
2035 'actions': [ 2036 'actions': [
2036 { 2037 {
2037 'action_name': 'js2c', 2038 'action_name': 'js2c',
2038 'inputs': [ 2039 'inputs': [
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
2216 }], 2217 }],
2217 ['want_separate_host_toolset==1', { 2218 ['want_separate_host_toolset==1', {
2218 'toolsets': ['host'], 2219 'toolsets': ['host'],
2219 }, { 2220 }, {
2220 'toolsets': ['target'], 2221 'toolsets': ['target'],
2221 }], 2222 }],
2222 ], 2223 ],
2223 }, 2224 },
2224 ], 2225 ],
2225 } 2226 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698