0
0
Fork 0
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:
Ry Dahl 2019-11-15 15:57:10 -05:00 committed by GitHub
parent 05ce4006c0
commit 643e1956a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 2 deletions

View file

@ -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",

View file

@ -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;