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

Side by Side Diff: src/v8.gyp

Issue 2250863002: WIP: prototype ffi support (from 2084663004) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 3 years, 12 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
« no previous file with comments | « src/snapshot/code-serializer.cc ('k') | test/cctest/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 'actions':[{ 386 'actions':[{
387 'action_name': 'run mkpeephole', 387 'action_name': 'run mkpeephole',
388 'inputs': ['<(mkpeephole_exec)'], 388 'inputs': ['<(mkpeephole_exec)'],
389 'outputs': ['<(INTERMEDIATE_DIR)/bytecode-peephole-table.cc'], 389 'outputs': ['<(INTERMEDIATE_DIR)/bytecode-peephole-table.cc'],
390 'action': ['<(mkpeephole_exec)', '<(INTERMEDIATE_DIR)/bytecode-peephole- table.cc' ], 390 'action': ['<(mkpeephole_exec)', '<(INTERMEDIATE_DIR)/bytecode-peephole- table.cc' ],
391 'process_outputs_as_sources': 1, 391 'process_outputs_as_sources': 1,
392 }], 392 }],
393 'sources': [ ### gcmole(all) ### 393 'sources': [ ### gcmole(all) ###
394 '../include/v8-debug.h', 394 '../include/v8-debug.h',
395 '../include/v8-experimental.h', 395 '../include/v8-experimental.h',
396 '../include/v8-ffi.h',
396 '../include/v8-platform.h', 397 '../include/v8-platform.h',
397 '../include/v8-profiler.h', 398 '../include/v8-profiler.h',
398 '../include/v8-testing.h', 399 '../include/v8-testing.h',
399 '../include/v8-util.h', 400 '../include/v8-util.h',
400 '../include/v8-version.h', 401 '../include/v8-version.h',
401 '../include/v8.h', 402 '../include/v8.h',
402 '../include/v8config.h', 403 '../include/v8config.h',
403 'accessors.cc', 404 'accessors.cc',
404 'accessors.h', 405 'accessors.h',
405 'address-map.cc', 406 'address-map.cc',
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 'compiler/control-flow-optimizer.h', 580 'compiler/control-flow-optimizer.h',
580 'compiler/dead-code-elimination.cc', 581 'compiler/dead-code-elimination.cc',
581 'compiler/dead-code-elimination.h', 582 'compiler/dead-code-elimination.h',
582 'compiler/diamond.h', 583 'compiler/diamond.h',
583 'compiler/effect-control-linearizer.cc', 584 'compiler/effect-control-linearizer.cc',
584 'compiler/effect-control-linearizer.h', 585 'compiler/effect-control-linearizer.h',
585 'compiler/escape-analysis.cc', 586 'compiler/escape-analysis.cc',
586 'compiler/escape-analysis.h', 587 'compiler/escape-analysis.h',
587 'compiler/escape-analysis-reducer.cc', 588 'compiler/escape-analysis-reducer.cc',
588 'compiler/escape-analysis-reducer.h', 589 'compiler/escape-analysis-reducer.h',
590 'compiler/ffi-compiler.cc',
591 'compiler/ffi-compiler.h',
589 'compiler/frame.cc', 592 'compiler/frame.cc',
590 'compiler/frame.h', 593 'compiler/frame.h',
591 'compiler/frame-elider.cc', 594 'compiler/frame-elider.cc',
592 'compiler/frame-elider.h', 595 'compiler/frame-elider.h',
593 'compiler/frame-states.cc', 596 'compiler/frame-states.cc',
594 'compiler/frame-states.h', 597 'compiler/frame-states.h',
595 'compiler/gap-resolver.cc', 598 'compiler/gap-resolver.cc',
596 'compiler/gap-resolver.h', 599 'compiler/gap-resolver.h',
597 'compiler/graph-reducer.cc', 600 'compiler/graph-reducer.cc',
598 'compiler/graph-reducer.h', 601 'compiler/graph-reducer.h',
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1163 'runtime/runtime-array.cc', 1166 'runtime/runtime-array.cc',
1164 'runtime/runtime-atomics.cc', 1167 'runtime/runtime-atomics.cc',
1165 'runtime/runtime-classes.cc', 1168 'runtime/runtime-classes.cc',
1166 'runtime/runtime-collections.cc', 1169 'runtime/runtime-collections.cc',
1167 'runtime/runtime-compiler.cc', 1170 'runtime/runtime-compiler.cc',
1168 'runtime/runtime-date.cc', 1171 'runtime/runtime-date.cc',
1169 'runtime/runtime-debug.cc', 1172 'runtime/runtime-debug.cc',
1170 'runtime/runtime-forin.cc', 1173 'runtime/runtime-forin.cc',
1171 'runtime/runtime-function.cc', 1174 'runtime/runtime-function.cc',
1172 'runtime/runtime-error.cc', 1175 'runtime/runtime-error.cc',
1176 "runtime/runtime-ffi.cc",
1173 'runtime/runtime-futex.cc', 1177 'runtime/runtime-futex.cc',
1174 'runtime/runtime-generator.cc', 1178 'runtime/runtime-generator.cc',
1175 'runtime/runtime-i18n.cc', 1179 'runtime/runtime-i18n.cc',
1176 'runtime/runtime-internal.cc', 1180 'runtime/runtime-internal.cc',
1177 'runtime/runtime-interpreter.cc', 1181 'runtime/runtime-interpreter.cc',
1178 'runtime/runtime-literals.cc', 1182 'runtime/runtime-literals.cc',
1179 'runtime/runtime-liveedit.cc', 1183 'runtime/runtime-liveedit.cc',
1180 'runtime/runtime-maths.cc', 1184 'runtime/runtime-maths.cc',
1181 'runtime/runtime-module.cc', 1185 'runtime/runtime-module.cc',
1182 'runtime/runtime-numbers.cc', 1186 'runtime/runtime-numbers.cc',
(...skipping 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after
2482 'conditions': [ 2486 'conditions': [
2483 ['want_separate_host_toolset_mkpeephole==1', { 2487 ['want_separate_host_toolset_mkpeephole==1', {
2484 'toolsets': ['host'], 2488 'toolsets': ['host'],
2485 }, { 2489 }, {
2486 'toolsets': ['target'], 2490 'toolsets': ['target'],
2487 }], 2491 }],
2488 ], 2492 ],
2489 }, 2493 },
2490 ], 2494 ],
2491 } 2495 }
OLDNEW
« no previous file with comments | « src/snapshot/code-serializer.cc ('k') | test/cctest/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698