mirror of
https://github.com/denoland/rusty_v8.git
synced 2025-03-09 13:38:51 -04:00
Rename mod v8 to V8 (#11)
This commit is contained in:
parent
05ce4006c0
commit
643e1956a1
4 changed files with 2 additions and 2 deletions
2
BUILD.gn
2
BUILD.gn
|
@ -3,11 +3,11 @@ import("//third_party/v8/gni/v8.gni")
|
|||
|
||||
v8_static_library("rusty_v8") {
|
||||
sources = [
|
||||
"src/V8.cc",
|
||||
"src/inspector/channel.cc",
|
||||
"src/inspector/client.cc",
|
||||
"src/platform/task.cc",
|
||||
"src/string_buffer.cc",
|
||||
"src/v8.cc",
|
||||
]
|
||||
deps = [
|
||||
":v8",
|
||||
|
|
|
@ -5,12 +5,12 @@
|
|||
|
||||
extern crate libc;
|
||||
|
||||
pub mod V8;
|
||||
pub mod inspector;
|
||||
pub mod platform;
|
||||
pub mod string_buffer;
|
||||
pub mod string_view;
|
||||
pub mod support;
|
||||
pub mod v8;
|
||||
|
||||
pub use string_buffer::StringBuffer;
|
||||
pub use string_view::StringView;
|
||||
|
|
Loading…
Add table
Reference in a new issue