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

Side by Side Diff: src/v8.gyp

Issue 1972153002: [wasm] Implement an interpreter for WASM. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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 1138 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 'wasm/switch-logic.cc', 1149 'wasm/switch-logic.cc',
1150 'wasm/wasm-external-refs.cc', 1150 'wasm/wasm-external-refs.cc',
1151 'wasm/wasm-external-refs.h', 1151 'wasm/wasm-external-refs.h',
1152 'wasm/wasm-function-name-table.cc', 1152 'wasm/wasm-function-name-table.cc',
1153 'wasm/wasm-function-name-table.h', 1153 'wasm/wasm-function-name-table.h',
1154 'wasm/wasm-js.cc', 1154 'wasm/wasm-js.cc',
1155 'wasm/wasm-js.h', 1155 'wasm/wasm-js.h',
1156 'wasm/wasm-macro-gen.h', 1156 'wasm/wasm-macro-gen.h',
1157 'wasm/wasm-module.cc', 1157 'wasm/wasm-module.cc',
1158 'wasm/wasm-module.h', 1158 'wasm/wasm-module.h',
1159 'wasm/wasm-interpreter.cc',
1160 'wasm/wasm-interpreter.h',
1159 'wasm/wasm-opcodes.cc', 1161 'wasm/wasm-opcodes.cc',
1160 'wasm/wasm-opcodes.h', 1162 'wasm/wasm-opcodes.h',
1161 'wasm/wasm-result.cc', 1163 'wasm/wasm-result.cc',
1162 'wasm/wasm-result.h', 1164 'wasm/wasm-result.h',
1163 'zone.cc', 1165 'zone.cc',
1164 'zone.h', 1166 'zone.h',
1165 'zone-allocator.h', 1167 'zone-allocator.h',
1166 'zone-containers.h', 1168 'zone-containers.h',
1167 'third_party/fdlibm/fdlibm.cc', 1169 'third_party/fdlibm/fdlibm.cc',
1168 'third_party/fdlibm/fdlibm.h', 1170 'third_party/fdlibm/fdlibm.h',
(...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after
2227 }], 2229 }],
2228 ['want_separate_host_toolset==1', { 2230 ['want_separate_host_toolset==1', {
2229 'toolsets': ['host'], 2231 'toolsets': ['host'],
2230 }, { 2232 }, {
2231 'toolsets': ['target'], 2233 'toolsets': ['target'],
2232 }], 2234 }],
2233 ], 2235 ],
2234 }, 2236 },
2235 ], 2237 ],
2236 } 2238 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698