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

Side by Side Diff: BUILD.gn

Issue 2250863002: WIP: prototype ffi support (from 2084663004) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years 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 | « no previous file | include/v8-ffi.h » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 847
848 v8_source_set("v8_base") { 848 v8_source_set("v8_base") {
849 visibility = [ ":*" ] # Only targets in this file can depend on this. 849 visibility = [ ":*" ] # Only targets in this file can depend on this.
850 850
851 sources = [ 851 sources = [
852 "//base/trace_event/common/trace_event_common.h", 852 "//base/trace_event/common/trace_event_common.h",
853 853
854 ### gcmole(all) ### 854 ### gcmole(all) ###
855 "include/v8-debug.h", 855 "include/v8-debug.h",
856 "include/v8-experimental.h", 856 "include/v8-experimental.h",
857 "include/v8-ffi.h",
857 "include/v8-platform.h", 858 "include/v8-platform.h",
858 "include/v8-profiler.h", 859 "include/v8-profiler.h",
859 "include/v8-testing.h", 860 "include/v8-testing.h",
860 "include/v8-util.h", 861 "include/v8-util.h",
861 "include/v8-version.h", 862 "include/v8-version.h",
862 "include/v8.h", 863 "include/v8.h",
863 "include/v8config.h", 864 "include/v8config.h",
864 "src/accessors.cc", 865 "src/accessors.cc",
865 "src/accessors.h", 866 "src/accessors.h",
866 "src/address-map.cc", 867 "src/address-map.cc",
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 "src/compiler/control-flow-optimizer.h", 1053 "src/compiler/control-flow-optimizer.h",
1053 "src/compiler/dead-code-elimination.cc", 1054 "src/compiler/dead-code-elimination.cc",
1054 "src/compiler/dead-code-elimination.h", 1055 "src/compiler/dead-code-elimination.h",
1055 "src/compiler/diamond.h", 1056 "src/compiler/diamond.h",
1056 "src/compiler/effect-control-linearizer.cc", 1057 "src/compiler/effect-control-linearizer.cc",
1057 "src/compiler/effect-control-linearizer.h", 1058 "src/compiler/effect-control-linearizer.h",
1058 "src/compiler/escape-analysis-reducer.cc", 1059 "src/compiler/escape-analysis-reducer.cc",
1059 "src/compiler/escape-analysis-reducer.h", 1060 "src/compiler/escape-analysis-reducer.h",
1060 "src/compiler/escape-analysis.cc", 1061 "src/compiler/escape-analysis.cc",
1061 "src/compiler/escape-analysis.h", 1062 "src/compiler/escape-analysis.h",
1063 "src/compiler/ffi-compiler.cc",
1064 "src/compiler/ffi-compiler.h",
1062 "src/compiler/frame-elider.cc", 1065 "src/compiler/frame-elider.cc",
1063 "src/compiler/frame-elider.h", 1066 "src/compiler/frame-elider.h",
1064 "src/compiler/frame-states.cc", 1067 "src/compiler/frame-states.cc",
1065 "src/compiler/frame-states.h", 1068 "src/compiler/frame-states.h",
1066 "src/compiler/frame.cc", 1069 "src/compiler/frame.cc",
1067 "src/compiler/frame.h", 1070 "src/compiler/frame.h",
1068 "src/compiler/gap-resolver.cc", 1071 "src/compiler/gap-resolver.cc",
1069 "src/compiler/gap-resolver.h", 1072 "src/compiler/gap-resolver.h",
1070 "src/compiler/graph-reducer.cc", 1073 "src/compiler/graph-reducer.cc",
1071 "src/compiler/graph-reducer.h", 1074 "src/compiler/graph-reducer.h",
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
1624 "src/runtime-profiler.cc", 1627 "src/runtime-profiler.cc",
1625 "src/runtime-profiler.h", 1628 "src/runtime-profiler.h",
1626 "src/runtime/runtime-array.cc", 1629 "src/runtime/runtime-array.cc",
1627 "src/runtime/runtime-atomics.cc", 1630 "src/runtime/runtime-atomics.cc",
1628 "src/runtime/runtime-classes.cc", 1631 "src/runtime/runtime-classes.cc",
1629 "src/runtime/runtime-collections.cc", 1632 "src/runtime/runtime-collections.cc",
1630 "src/runtime/runtime-compiler.cc", 1633 "src/runtime/runtime-compiler.cc",
1631 "src/runtime/runtime-date.cc", 1634 "src/runtime/runtime-date.cc",
1632 "src/runtime/runtime-debug.cc", 1635 "src/runtime/runtime-debug.cc",
1633 "src/runtime/runtime-error.cc", 1636 "src/runtime/runtime-error.cc",
1637 "src/runtime/runtime-ffi.cc",
1634 "src/runtime/runtime-forin.cc", 1638 "src/runtime/runtime-forin.cc",
1635 "src/runtime/runtime-function.cc", 1639 "src/runtime/runtime-function.cc",
1636 "src/runtime/runtime-futex.cc", 1640 "src/runtime/runtime-futex.cc",
1637 "src/runtime/runtime-generator.cc", 1641 "src/runtime/runtime-generator.cc",
1638 "src/runtime/runtime-i18n.cc", 1642 "src/runtime/runtime-i18n.cc",
1639 "src/runtime/runtime-internal.cc", 1643 "src/runtime/runtime-internal.cc",
1640 "src/runtime/runtime-interpreter.cc", 1644 "src/runtime/runtime-interpreter.cc",
1641 "src/runtime/runtime-literals.cc", 1645 "src/runtime/runtime-literals.cc",
1642 "src/runtime/runtime-liveedit.cc", 1646 "src/runtime/runtime-liveedit.cc",
1643 "src/runtime/runtime-maths.cc", 1647 "src/runtime/runtime-maths.cc",
(...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after
2999 ] 3003 ]
3000 3004
3001 configs = [ 3005 configs = [
3002 ":external_config", 3006 ":external_config",
3003 ":internal_config_base", 3007 ":internal_config_base",
3004 ] 3008 ]
3005 } 3009 }
3006 3010
3007 v8_fuzzer("wasm_data_section_fuzzer") { 3011 v8_fuzzer("wasm_data_section_fuzzer") {
3008 } 3012 }
OLDNEW
« no previous file with comments | « no previous file | include/v8-ffi.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698