diff options
| author | Yoshiya Hinosawa <stibium121@gmail.com> | 2018-08-19 16:44:10 +0900 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-19 11:27:47 -0400 |
| commit | aaabc853e84a03f72208c0e80634bd986c3ca4e2 (patch) | |
| tree | 24cb4daf07c7b52b9260e041289ab2e79f25f5a8 /BUILD.gn | |
| parent | 146bc93b81ef1775a3a22784c74cbf0c8bbd1c9e (diff) | |
chore: move libdeno files to //libdeno/
Diffstat (limited to 'BUILD.gn')
| -rw-r--r-- | BUILD.gn | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -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" } |
