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

Side by Side Diff: src/v8.gyp

Issue 2051043002: Implement Wasm GrowMemory opcode as a wasm runtime call (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ben's review, fix includes Created 4 years, 6 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 1056 matching lines...) Expand 10 before | Expand all | Expand 10 after
1067 'runtime/runtime-operators.cc', 1067 'runtime/runtime-operators.cc',
1068 'runtime/runtime-proxy.cc', 1068 'runtime/runtime-proxy.cc',
1069 'runtime/runtime-regexp.cc', 1069 'runtime/runtime-regexp.cc',
1070 'runtime/runtime-scopes.cc', 1070 'runtime/runtime-scopes.cc',
1071 'runtime/runtime-simd.cc', 1071 'runtime/runtime-simd.cc',
1072 'runtime/runtime-strings.cc', 1072 'runtime/runtime-strings.cc',
1073 'runtime/runtime-symbol.cc', 1073 'runtime/runtime-symbol.cc',
1074 'runtime/runtime-test.cc', 1074 'runtime/runtime-test.cc',
1075 'runtime/runtime-typedarray.cc', 1075 'runtime/runtime-typedarray.cc',
1076 'runtime/runtime-utils.h', 1076 'runtime/runtime-utils.h',
1077 'runtime/runtime-wasm.cc',
1077 'runtime/runtime.cc', 1078 'runtime/runtime.cc',
1078 'runtime/runtime.h', 1079 'runtime/runtime.h',
1079 'safepoint-table.cc', 1080 'safepoint-table.cc',
1080 'safepoint-table.h', 1081 'safepoint-table.h',
1081 'signature.h', 1082 'signature.h',
1082 'simulator.h', 1083 'simulator.h',
1083 'small-pointer-list.h', 1084 'small-pointer-list.h',
1084 'snapshot/code-serializer.cc', 1085 'snapshot/code-serializer.cc',
1085 'snapshot/code-serializer.h', 1086 'snapshot/code-serializer.h',
1086 'snapshot/deserializer.cc', 1087 'snapshot/deserializer.cc',
(...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after
2282 }], 2283 }],
2283 ['want_separate_host_toolset==1', { 2284 ['want_separate_host_toolset==1', {
2284 'toolsets': ['host'], 2285 'toolsets': ['host'],
2285 }, { 2286 }, {
2286 'toolsets': ['target'], 2287 'toolsets': ['target'],
2287 }], 2288 }],
2288 ], 2289 ],
2289 }, 2290 },
2290 ], 2291 ],
2291 } 2292 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698