Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove tools/build.py #2865

Merged
merged 18 commits into from
Sep 7, 2019
Prev Previous commit
Next Next commit
WIP
  • Loading branch information
ry committed Sep 5, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit aaba7cdcab9a4d28b6547f9d78325fe0b5801b0a
4 changes: 1 addition & 3 deletions BUILD.gn
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
group("default") {
testonly = true
deps = [
"core/libdeno:v8",
"core/libdeno:libdeno_static_lib",
"core/libdeno:libdeno_test",
"core/libdeno:default",
]
}
2 changes: 1 addition & 1 deletion core/build.rs
Original file line number Diff line number Diff line change
@@ -12,5 +12,5 @@ fn main() {
build.gn_out_dir
);

build.run("core:deno_core_deps");
build.run("core/libdeno:default");
}
9 changes: 9 additions & 0 deletions core/libdeno/BUILD.gn
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import("//third_party/v8/gni/v8.gni")

group("default") {
testonly = true
deps = [
":libdeno_static_lib",
":libdeno_test",
":v8",
]
}

config("deno_config") {
include_dirs = [ "//third_party/v8" ] # This allows us to v8/src/base/ libraries.
configs = [ "//third_party/v8:external_config" ]