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

Side by Side Diff: src/v8.gyp

Issue 2371833007: [wasm] Initial signal handler (Closed)
Patch Set: Avoid signed/unsigned comparisons for windows Created 3 years, 10 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 1259 matching lines...) Expand 10 before | Expand all | Expand 10 after
1270 'ic/stub-cache.h', 1270 'ic/stub-cache.h',
1271 'tracing/trace-event.cc', 1271 'tracing/trace-event.cc',
1272 'tracing/trace-event.h', 1272 'tracing/trace-event.h',
1273 'tracing/traced-value.cc', 1273 'tracing/traced-value.cc',
1274 'tracing/traced-value.h', 1274 'tracing/traced-value.h',
1275 'tracing/tracing-category-observer.cc', 1275 'tracing/tracing-category-observer.cc',
1276 'tracing/tracing-category-observer.h', 1276 'tracing/tracing-category-observer.h',
1277 'transitions-inl.h', 1277 'transitions-inl.h',
1278 'transitions.cc', 1278 'transitions.cc',
1279 'transitions.h', 1279 'transitions.h',
1280 'trap-handler/handler-outside.cc',
1281 'trap-handler/handler-shared.cc',
1280 'trap-handler/trap-handler.h', 1282 'trap-handler/trap-handler.h',
1283 'trap-handler/trap-handler-internal.h',
1281 'type-hints.cc', 1284 'type-hints.cc',
1282 'type-hints.h', 1285 'type-hints.h',
1283 'type-info.cc', 1286 'type-info.cc',
1284 'type-info.h', 1287 'type-info.h',
1285 'unicode-inl.h', 1288 'unicode-inl.h',
1286 'unicode.cc', 1289 'unicode.cc',
1287 'unicode.h', 1290 'unicode.h',
1288 'unicode-cache-inl.h', 1291 'unicode-cache-inl.h',
1289 'unicode-cache.h', 1292 'unicode-cache.h',
1290 'unicode-decoder.cc', 1293 'unicode-decoder.cc',
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1662 'debug/x64/debug-x64.cc', 1665 'debug/x64/debug-x64.cc',
1663 'full-codegen/x64/full-codegen-x64.cc', 1666 'full-codegen/x64/full-codegen-x64.cc',
1664 'ic/x64/access-compiler-x64.cc', 1667 'ic/x64/access-compiler-x64.cc',
1665 'ic/x64/handler-compiler-x64.cc', 1668 'ic/x64/handler-compiler-x64.cc',
1666 'ic/x64/ic-x64.cc', 1669 'ic/x64/ic-x64.cc',
1667 'regexp/x64/regexp-macro-assembler-x64.cc', 1670 'regexp/x64/regexp-macro-assembler-x64.cc',
1668 'regexp/x64/regexp-macro-assembler-x64.h', 1671 'regexp/x64/regexp-macro-assembler-x64.h',
1669 'third_party/valgrind/valgrind.h', 1672 'third_party/valgrind/valgrind.h',
1670 ], 1673 ],
1671 }], 1674 }],
1675 ['v8_target_arch=="x64" and OS=="linux"', {
1676 'sources': ['trap-handler/handler-inside.cc']
1677 }],
1672 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { 1678 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', {
1673 'sources': [ ### gcmole(arch:ppc) ### 1679 'sources': [ ### gcmole(arch:ppc) ###
1674 'builtins/ppc/builtins-ppc.cc', 1680 'builtins/ppc/builtins-ppc.cc',
1675 'compiler/ppc/code-generator-ppc.cc', 1681 'compiler/ppc/code-generator-ppc.cc',
1676 'compiler/ppc/instruction-codes-ppc.h', 1682 'compiler/ppc/instruction-codes-ppc.h',
1677 'compiler/ppc/instruction-scheduler-ppc.cc', 1683 'compiler/ppc/instruction-scheduler-ppc.cc',
1678 'compiler/ppc/instruction-selector-ppc.cc', 1684 'compiler/ppc/instruction-selector-ppc.cc',
1679 'crankshaft/ppc/lithium-ppc.cc', 1685 'crankshaft/ppc/lithium-ppc.cc',
1680 'crankshaft/ppc/lithium-ppc.h', 1686 'crankshaft/ppc/lithium-ppc.h',
1681 'crankshaft/ppc/lithium-codegen-ppc.cc', 1687 'crankshaft/ppc/lithium-codegen-ppc.cc',
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
2506 'conditions': [ 2512 'conditions': [
2507 ['want_separate_host_toolset_mkpeephole==1', { 2513 ['want_separate_host_toolset_mkpeephole==1', {
2508 'toolsets': ['host'], 2514 'toolsets': ['host'],
2509 }, { 2515 }, {
2510 'toolsets': ['target'], 2516 'toolsets': ['target'],
2511 }], 2517 }],
2512 ], 2518 ],
2513 }, 2519 },
2514 ], 2520 ],
2515 } 2521 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698