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

Side by Side Diff: src/v8.gyp

Issue 2490663002: [wasm] Move all heap-allocated WASM structures into wasm-objects.h. (Closed)
Patch Set: More dead code 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 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 'wasm/ast-decoder.cc', 1253 'wasm/ast-decoder.cc',
1254 'wasm/ast-decoder.h', 1254 'wasm/ast-decoder.h',
1255 'wasm/decoder.h', 1255 'wasm/decoder.h',
1256 'wasm/leb-helper.h', 1256 'wasm/leb-helper.h',
1257 'wasm/managed.h', 1257 'wasm/managed.h',
1258 'wasm/module-decoder.cc', 1258 'wasm/module-decoder.cc',
1259 'wasm/module-decoder.h', 1259 'wasm/module-decoder.h',
1260 'wasm/signature-map.cc', 1260 'wasm/signature-map.cc',
1261 'wasm/signature-map.h', 1261 'wasm/signature-map.h',
1262 'wasm/wasm-debug.cc', 1262 'wasm/wasm-debug.cc',
1263 'wasm/wasm-debug.h',
1264 'wasm/wasm-external-refs.cc', 1263 'wasm/wasm-external-refs.cc',
1265 'wasm/wasm-external-refs.h', 1264 'wasm/wasm-external-refs.h',
1266 'wasm/wasm-js.cc', 1265 'wasm/wasm-js.cc',
1267 'wasm/wasm-js.h', 1266 'wasm/wasm-js.h',
1268 'wasm/wasm-macro-gen.h', 1267 'wasm/wasm-macro-gen.h',
1269 'wasm/wasm-module.cc', 1268 'wasm/wasm-module.cc',
1270 'wasm/wasm-module.h', 1269 'wasm/wasm-module.h',
1271 'wasm/wasm-module-builder.cc', 1270 'wasm/wasm-module-builder.cc',
1272 'wasm/wasm-module-builder.h', 1271 'wasm/wasm-module-builder.h',
1273 'wasm/wasm-interpreter.cc', 1272 'wasm/wasm-interpreter.cc',
1274 'wasm/wasm-interpreter.h', 1273 'wasm/wasm-interpreter.h',
1274 'wasm/wasm-objects.cc',
1275 'wasm/wasm-objects.h',
1275 'wasm/wasm-opcodes.cc', 1276 'wasm/wasm-opcodes.cc',
1276 'wasm/wasm-opcodes.h', 1277 'wasm/wasm-opcodes.h',
1277 'wasm/wasm-result.cc', 1278 'wasm/wasm-result.cc',
1278 'wasm/wasm-result.h', 1279 'wasm/wasm-result.h',
1279 'zone/accounting-allocator.cc', 1280 'zone/accounting-allocator.cc',
1280 'zone/accounting-allocator.h', 1281 'zone/accounting-allocator.h',
1281 'zone/zone-segment.cc', 1282 'zone/zone-segment.cc',
1282 'zone/zone-segment.h', 1283 'zone/zone-segment.h',
1283 'zone/zone.cc', 1284 'zone/zone.cc',
1284 'zone/zone.h', 1285 'zone/zone.h',
(...skipping 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after
2469 'conditions': [ 2470 'conditions': [
2470 ['want_separate_host_toolset_mkpeephole==1', { 2471 ['want_separate_host_toolset_mkpeephole==1', {
2471 'toolsets': ['host'], 2472 'toolsets': ['host'],
2472 }, { 2473 }, {
2473 'toolsets': ['target'], 2474 'toolsets': ['target'],
2474 }], 2475 }],
2475 ], 2476 ],
2476 }, 2477 },
2477 ], 2478 ],
2478 } 2479 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698