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

Unified Diff: BUILD.gn

Issue 2057403003: Hooking up asm-wasm conversion. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/arm/builtins-arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index fb8551a3f4385b71736438baa9d929d4ca35f896..1fdc10816cf426917b695f95f3f31b87b64d916f 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -628,7 +628,9 @@ action("run_mksnapshot") {
action("v8_dump_build_config") {
script = "tools/testrunner/utils/dump_build_config.py"
- outputs = [ "$root_out_dir/v8_build_config.json" ]
+ outputs = [
+ "$root_out_dir/v8_build_config.json",
+ ]
args = [
rebase_path("$root_out_dir/v8_build_config.json", root_build_dir),
"dcheck_always_on=$dcheck_always_on",
@@ -642,10 +644,9 @@ action("v8_dump_build_config") {
"v8_enable_i18n_support=$v8_enable_i18n_support",
"v8_target_cpu=\"$v8_target_cpu\"",
"v8_use_snapshot=$v8_use_snapshot",
- ]
+ ]
}
-
###############################################################################
# Source Sets (aka static libraries)
#
@@ -779,6 +780,14 @@ v8_source_set("v8_base") {
"src/api.h",
"src/arguments.cc",
"src/arguments.h",
+ "src/asmjs/asm-js.cc",
+ "src/asmjs/asm-js.h",
+ "src/asmjs/asm-types.cc",
+ "src/asmjs/asm-types.h",
+ "src/asmjs/asm-wasm-builder.cc",
+ "src/asmjs/asm-wasm-builder.h",
+ "src/asmjs/typing-asm.cc",
+ "src/asmjs/typing-asm.h",
"src/assembler.cc",
"src/assembler.h",
"src/assert-scope.cc",
@@ -1493,8 +1502,6 @@ v8_source_set("v8_base") {
"src/type-info.h",
"src/types.cc",
"src/types.h",
- "src/typing-asm.cc",
- "src/typing-asm.h",
"src/unicode-cache-inl.h",
"src/unicode-cache.h",
"src/unicode-decoder.cc",
@@ -1516,10 +1523,6 @@ v8_source_set("v8_base") {
"src/version.h",
"src/vm-state-inl.h",
"src/vm-state.h",
- "src/wasm/asm-types.cc",
- "src/wasm/asm-types.h",
- "src/wasm/asm-wasm-builder.cc",
- "src/wasm/asm-wasm-builder.h",
"src/wasm/ast-decoder.cc",
"src/wasm/ast-decoder.h",
"src/wasm/decoder.h",
@@ -2129,7 +2132,9 @@ if (is_component_build) {
"src/v8dll-main.cc",
]
- deps = [ ":v8_dump_build_config" ]
+ deps = [
+ ":v8_dump_build_config",
+ ]
public_deps = [
":v8_base",
@@ -2142,7 +2147,9 @@ if (is_component_build) {
}
} else {
group("v8") {
- deps = [ ":v8_dump_build_config" ]
+ deps = [
+ ":v8_dump_build_config",
+ ]
public_deps = [
":v8_base",
« no previous file with comments | « no previous file | src/arm/builtins-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698