summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-03-19 12:18:05 -0400
committerGitHub <noreply@github.com>2019-03-19 12:18:05 -0400
commitfa3c35301aa44975776b96c85f200de8eb500c22 (patch)
tree76f8d5e6f42e1c306a40efd0b80dce18528952f4 /BUILD.gn
parentc7d81fa9ff495986675c05e52e13acc9ffc85372 (diff)
Rename //src/ to //cli/ (#1962)
To better distinguish the deno_core crate from the executable deno, which will now be called "the cli" internally.
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn8
1 files changed, 4 insertions, 4 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 8b526bc2e..41a84613e 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -154,7 +154,7 @@ deno_cargo_info = exec_script("build_extra/rust/get_cargo_info.py",
"json")
rust_executable("deno") {
- source_root = "src/main.rs"
+ source_root = "cli/main.rs"
extern = main_extern
deps = [
":deno_deps",
@@ -170,7 +170,7 @@ rust_executable("deno") {
}
rust_test("test_rs") {
- source_root = "src/main.rs"
+ source_root = "cli/main.rs"
extern = main_extern
deps = [
":deno_deps",
@@ -257,13 +257,13 @@ bundle("compiler_bundle") {
ts_flatbuffer("msg_ts") {
sources = [
- "src/msg.fbs",
+ "cli/msg.fbs",
]
}
rust_flatbuffer("msg_rs") {
sources = [
- "src/msg.fbs",
+ "cli/msg.fbs",
]
}