mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Rename ports/winit package to servoshell (#30163)
* rename winit package to servoshell * revert previous changes and rename only package
This commit is contained in:
parent
cc4fe4981f
commit
66567faeb2
26 changed files with 39 additions and 39 deletions
66
Cargo.lock
generated
66
Cargo.lock
generated
|
@ -5238,39 +5238,6 @@ dependencies = [
|
|||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "servo"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
"cc",
|
||||
"clipboard",
|
||||
"egui",
|
||||
"egui-winit",
|
||||
"egui_glow",
|
||||
"euclid",
|
||||
"getopts",
|
||||
"gleam",
|
||||
"glow",
|
||||
"image",
|
||||
"keyboard-types",
|
||||
"lazy_static",
|
||||
"libc",
|
||||
"libservo",
|
||||
"log",
|
||||
"raw-window-handle",
|
||||
"servo-media",
|
||||
"shellwords",
|
||||
"sig",
|
||||
"surfman",
|
||||
"tinyfiledialogs",
|
||||
"vergen",
|
||||
"webxr",
|
||||
"winapi",
|
||||
"winit",
|
||||
"winres",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "servo-display-link"
|
||||
version = "0.2.0"
|
||||
|
@ -5575,6 +5542,39 @@ dependencies = [
|
|||
"uuid 1.4.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "servoshell"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"backtrace",
|
||||
"cc",
|
||||
"clipboard",
|
||||
"egui",
|
||||
"egui-winit",
|
||||
"egui_glow",
|
||||
"euclid",
|
||||
"getopts",
|
||||
"gleam",
|
||||
"glow",
|
||||
"image",
|
||||
"keyboard-types",
|
||||
"lazy_static",
|
||||
"libc",
|
||||
"libservo",
|
||||
"log",
|
||||
"raw-window-handle",
|
||||
"servo-media",
|
||||
"shellwords",
|
||||
"sig",
|
||||
"surfman",
|
||||
"tinyfiledialogs",
|
||||
"vergen",
|
||||
"webxr",
|
||||
"winapi",
|
||||
"winit",
|
||||
"winres",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sha1"
|
||||
version = "0.10.5"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"ports/winit",
|
||||
"ports/servoshell",
|
||||
"ports/gstplugin",
|
||||
"ports/libsimpleservo/capi/",
|
||||
"ports/libsimpleservo/jniapi/",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
|
||||
name = "servo"
|
||||
name = "servoshell"
|
||||
version = "0.0.1"
|
||||
authors = ["The Servo Project Developers"]
|
||||
license = "MPL-2.0"
|
|
@ -871,7 +871,7 @@ class CommandBase(object):
|
|||
api = "capi"
|
||||
port = path.join("libsimpleservo", api)
|
||||
else:
|
||||
port = "winit"
|
||||
port = "servoshell"
|
||||
args += [
|
||||
"--manifest-path",
|
||||
path.join(self.context.topdir, "ports", port, "Cargo.toml"),
|
||||
|
|
|
@ -528,9 +528,9 @@ def check_rust(file_name, lines):
|
|||
PANIC_NOT_ALLOWED_PATHS = [
|
||||
os.path.join("*", "components", "compositing", "compositor.rs"),
|
||||
os.path.join("*", "components", "constellation", "*"),
|
||||
os.path.join("*", "ports", "winit", "headed_window.rs"),
|
||||
os.path.join("*", "ports", "winit", "headless_window.rs"),
|
||||
os.path.join("*", "ports", "winit", "embedder.rs"),
|
||||
os.path.join("*", "ports", "servoshell", "headed_window.rs"),
|
||||
os.path.join("*", "ports", "servoshell", "headless_window.rs"),
|
||||
os.path.join("*", "ports", "servoshell", "embedder.rs"),
|
||||
os.path.join("*", "rust_tidy.rs"), # This is for the tests.
|
||||
]
|
||||
is_panic_not_allowed_rs_file = any([
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue