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

Side by Side Diff: src/v8.gyp

Issue 2490663002: [wasm] Move all heap-allocated WASM structures into wasm-objects.h. (Closed)
Patch Set: Created 4 years, 1 month 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 1254 matching lines...) Expand 10 before | Expand all | Expand 10 after
1265 'wasm/wasm-external-refs.h', 1265 'wasm/wasm-external-refs.h',
1266 'wasm/wasm-js.cc', 1266 'wasm/wasm-js.cc',
1267 'wasm/wasm-js.h', 1267 'wasm/wasm-js.h',
1268 'wasm/wasm-macro-gen.h', 1268 'wasm/wasm-macro-gen.h',
1269 'wasm/wasm-module.cc', 1269 'wasm/wasm-module.cc',
1270 'wasm/wasm-module.h', 1270 'wasm/wasm-module.h',
1271 'wasm/wasm-module-builder.cc', 1271 'wasm/wasm-module-builder.cc',
1272 'wasm/wasm-module-builder.h', 1272 'wasm/wasm-module-builder.h',
1273 'wasm/wasm-interpreter.cc', 1273 'wasm/wasm-interpreter.cc',
1274 'wasm/wasm-interpreter.h', 1274 'wasm/wasm-interpreter.h',
1275 'wasm/wasm-objects.cc',
1276 'wasm/wasm-objects.h',
1275 'wasm/wasm-opcodes.cc', 1277 'wasm/wasm-opcodes.cc',
1276 'wasm/wasm-opcodes.h', 1278 'wasm/wasm-opcodes.h',
1277 'wasm/wasm-result.cc', 1279 'wasm/wasm-result.cc',
1278 'wasm/wasm-result.h', 1280 'wasm/wasm-result.h',
1279 'zone/accounting-allocator.cc', 1281 'zone/accounting-allocator.cc',
1280 'zone/accounting-allocator.h', 1282 'zone/accounting-allocator.h',
1281 'zone/zone-segment.cc', 1283 'zone/zone-segment.cc',
1282 'zone/zone-segment.h', 1284 'zone/zone-segment.h',
1283 'zone/zone.cc', 1285 'zone/zone.cc',
1284 'zone/zone.h', 1286 'zone/zone.h',
(...skipping 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after
2469 'conditions': [ 2471 'conditions': [
2470 ['want_separate_host_toolset_mkpeephole==1', { 2472 ['want_separate_host_toolset_mkpeephole==1', {
2471 'toolsets': ['host'], 2473 'toolsets': ['host'],
2472 }, { 2474 }, {
2473 'toolsets': ['target'], 2475 'toolsets': ['target'],
2474 }], 2476 }],
2475 ], 2477 ],
2476 }, 2478 },
2477 ], 2479 ],
2478 } 2480 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698