summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUILD.gn26
-rw-r--r--libdeno/binding.cc (renamed from src/binding.cc)0
-rw-r--r--libdeno/deno.h (renamed from src/deno.h)0
-rw-r--r--libdeno/file_util.cc (renamed from src/file_util.cc)0
-rw-r--r--libdeno/file_util.h (renamed from src/file_util.h)0
-rw-r--r--libdeno/file_util_test.cc (renamed from src/file_util_test.cc)0
-rw-r--r--libdeno/from_filesystem.cc (renamed from src/from_filesystem.cc)0
-rw-r--r--libdeno/from_snapshot.cc (renamed from src/from_snapshot.cc)0
-rw-r--r--libdeno/internal.h (renamed from src/internal.h)0
-rw-r--r--libdeno/libdeno_test.cc (renamed from src/libdeno_test.cc)0
-rw-r--r--libdeno/libdeno_test.js (renamed from js/libdeno_test.js)0
-rw-r--r--libdeno/snapshot_creator.cc (renamed from src/snapshot_creator.cc)0
-rw-r--r--libdeno/test.cc (renamed from src/test.cc)0
13 files changed, 13 insertions, 13 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 0a077f640..7d283ab34 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -78,7 +78,7 @@ rust_test("test_rs") {
v8_executable("test_cc") {
testonly = true
sources = [
- "src/test.cc",
+ "libdeno/test.cc",
]
deps = [
":deno_base_test",
@@ -90,7 +90,7 @@ v8_executable("test_cc") {
static_library("libdeno") {
complete_static_lib = true
sources = [
- "src/from_snapshot.cc",
+ "libdeno/from_snapshot.cc",
]
inputs = [
"$target_gen_dir/snapshot_deno.bin",
@@ -108,11 +108,11 @@ static_library("libdeno") {
# dependencies are minimal.
v8_source_set("deno_base") {
sources = [
- "src/binding.cc",
- "src/deno.h",
- "src/file_util.cc",
- "src/file_util.h",
- "src/internal.h",
+ "libdeno/binding.cc",
+ "libdeno/deno.h",
+ "libdeno/file_util.cc",
+ "libdeno/file_util.h",
+ "libdeno/internal.h",
]
public_deps = [
"third_party/v8:v8_monolith",
@@ -123,9 +123,9 @@ v8_source_set("deno_base") {
v8_source_set("deno_base_test") {
testonly = true
sources = [
- "src/file_util_test.cc",
- "src/from_snapshot.cc",
- "src/libdeno_test.cc",
+ "libdeno/file_util_test.cc",
+ "libdeno/from_snapshot.cc",
+ "libdeno/libdeno_test.cc",
]
inputs = [
"$target_gen_dir/snapshot_libdeno_test.bin",
@@ -148,7 +148,7 @@ v8_source_set("deno_bindings") {
executable("snapshot_creator") {
sources = [
- "src/snapshot_creator.cc",
+ "libdeno/snapshot_creator.cc",
]
deps = [
":deno_base",
@@ -242,7 +242,7 @@ source_set("libdeno_nosnapshot") {
bundle_map_location = rebase_path(bundle_outputs[1])
inputs = bundle_outputs
sources = [
- "src/from_filesystem.cc",
+ "libdeno/from_filesystem.cc",
]
deps = [
":bundle",
@@ -280,5 +280,5 @@ create_snapshot("deno") {
# Generates $target_gen_dir/snapshot_libdeno_test.bin
create_snapshot("libdeno_test") {
testonly = true
- js = "js/libdeno_test.js"
+ js = "libdeno/libdeno_test.js"
}
diff --git a/src/binding.cc b/libdeno/binding.cc
index 0a107c95f..0a107c95f 100644
--- a/src/binding.cc
+++ b/libdeno/binding.cc
diff --git a/src/deno.h b/libdeno/deno.h
index 7bde5ab9d..7bde5ab9d 100644
--- a/src/deno.h
+++ b/libdeno/deno.h
diff --git a/src/file_util.cc b/libdeno/file_util.cc
index a0cae5f58..a0cae5f58 100644
--- a/src/file_util.cc
+++ b/libdeno/file_util.cc
diff --git a/src/file_util.h b/libdeno/file_util.h
index c8c0e5759..c8c0e5759 100644
--- a/src/file_util.h
+++ b/libdeno/file_util.h
diff --git a/src/file_util_test.cc b/libdeno/file_util_test.cc
index 3f01c8115..3f01c8115 100644
--- a/src/file_util_test.cc
+++ b/libdeno/file_util_test.cc
diff --git a/src/from_filesystem.cc b/libdeno/from_filesystem.cc
index fa50c0515..fa50c0515 100644
--- a/src/from_filesystem.cc
+++ b/libdeno/from_filesystem.cc
diff --git a/src/from_snapshot.cc b/libdeno/from_snapshot.cc
index bcd215f82..bcd215f82 100644
--- a/src/from_snapshot.cc
+++ b/libdeno/from_snapshot.cc
diff --git a/src/internal.h b/libdeno/internal.h
index c63ba532a..c63ba532a 100644
--- a/src/internal.h
+++ b/libdeno/internal.h
diff --git a/src/libdeno_test.cc b/libdeno/libdeno_test.cc
index 4675e4d7b..4675e4d7b 100644
--- a/src/libdeno_test.cc
+++ b/libdeno/libdeno_test.cc
diff --git a/js/libdeno_test.js b/libdeno/libdeno_test.js
index 10905494c..10905494c 100644
--- a/js/libdeno_test.js
+++ b/libdeno/libdeno_test.js
diff --git a/src/snapshot_creator.cc b/libdeno/snapshot_creator.cc
index 8038c9b13..8038c9b13 100644
--- a/src/snapshot_creator.cc
+++ b/libdeno/snapshot_creator.cc
diff --git a/src/test.cc b/libdeno/test.cc
index 9638dba60..9638dba60 100644
--- a/src/test.cc
+++ b/libdeno/test.cc