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

Side by Side Diff: src/v8.gyp

Issue 2383463002: [wasm] Rename encoder.(cc,h) to wasm-module-builder.(cc,h) (Closed)
Patch Set: Created 4 years, 2 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 1227 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 'value-serializer.cc', 1238 'value-serializer.cc',
1239 'value-serializer.h', 1239 'value-serializer.h',
1240 'vector.h', 1240 'vector.h',
1241 'version.cc', 1241 'version.cc',
1242 'version.h', 1242 'version.h',
1243 'vm-state-inl.h', 1243 'vm-state-inl.h',
1244 'vm-state.h', 1244 'vm-state.h',
1245 'wasm/ast-decoder.cc', 1245 'wasm/ast-decoder.cc',
1246 'wasm/ast-decoder.h', 1246 'wasm/ast-decoder.h',
1247 'wasm/decoder.h', 1247 'wasm/decoder.h',
1248 'wasm/encoder.cc',
1249 'wasm/encoder.h',
1250 'wasm/leb-helper.h', 1248 'wasm/leb-helper.h',
1251 'wasm/module-decoder.cc', 1249 'wasm/module-decoder.cc',
1252 'wasm/module-decoder.h', 1250 'wasm/module-decoder.h',
1253 'wasm/switch-logic.h', 1251 'wasm/switch-logic.h',
1254 'wasm/switch-logic.cc', 1252 'wasm/switch-logic.cc',
1255 'wasm/wasm-debug.cc', 1253 'wasm/wasm-debug.cc',
1256 'wasm/wasm-debug.h', 1254 'wasm/wasm-debug.h',
1257 'wasm/wasm-external-refs.cc', 1255 'wasm/wasm-external-refs.cc',
1258 'wasm/wasm-external-refs.h', 1256 'wasm/wasm-external-refs.h',
1259 'wasm/wasm-function-name-table.cc', 1257 'wasm/wasm-function-name-table.cc',
1260 'wasm/wasm-function-name-table.h', 1258 'wasm/wasm-function-name-table.h',
1261 'wasm/wasm-js.cc', 1259 'wasm/wasm-js.cc',
1262 'wasm/wasm-js.h', 1260 'wasm/wasm-js.h',
1263 'wasm/wasm-macro-gen.h', 1261 'wasm/wasm-macro-gen.h',
1264 'wasm/wasm-module.cc', 1262 'wasm/wasm-module.cc',
1265 'wasm/wasm-module.h', 1263 'wasm/wasm-module.h',
1264 'wasm/wasm-module-builder.cc',
1265 'wasm/wasm-module-builder.h',
1266 'wasm/wasm-interpreter.cc', 1266 'wasm/wasm-interpreter.cc',
1267 'wasm/wasm-interpreter.h', 1267 'wasm/wasm-interpreter.h',
1268 'wasm/wasm-opcodes.cc', 1268 'wasm/wasm-opcodes.cc',
1269 'wasm/wasm-opcodes.h', 1269 'wasm/wasm-opcodes.h',
1270 'wasm/wasm-result.cc', 1270 'wasm/wasm-result.cc',
1271 'wasm/wasm-result.h', 1271 'wasm/wasm-result.h',
1272 'zone/accounting-allocator.cc', 1272 'zone/accounting-allocator.cc',
1273 'zone/accounting-allocator.h', 1273 'zone/accounting-allocator.h',
1274 'zone/zone-segment.h', 1274 'zone/zone-segment.h',
1275 'zone/zone.cc', 1275 'zone/zone.cc',
(...skipping 1160 matching lines...) Expand 10 before | Expand all | Expand 10 after
2436 'conditions': [ 2436 'conditions': [
2437 ['want_separate_host_toolset_mkpeephole==1', { 2437 ['want_separate_host_toolset_mkpeephole==1', {
2438 'toolsets': ['host'], 2438 'toolsets': ['host'],
2439 }, { 2439 }, {
2440 'toolsets': ['target'], 2440 'toolsets': ['target'],
2441 }], 2441 }],
2442 ], 2442 ],
2443 }, 2443 },
2444 ], 2444 ],
2445 } 2445 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698