mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Apply some review fixes
This commit is contained in:
parent
f0690ec7c1
commit
67ca730ec5
3 changed files with 5 additions and 24 deletions
23
Cargo.lock
generated
23
Cargo.lock
generated
|
@ -3295,20 +3295,6 @@ version = "0.2.6"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
|
checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "libmlservo"
|
|
||||||
version = "0.0.1"
|
|
||||||
dependencies = [
|
|
||||||
"libc",
|
|
||||||
"libservo",
|
|
||||||
"log",
|
|
||||||
"servo-egl",
|
|
||||||
"simpleservo",
|
|
||||||
"smallvec",
|
|
||||||
"webxr",
|
|
||||||
"webxr-api",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libservo"
|
name = "libservo"
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
@ -5380,15 +5366,6 @@ dependencies = [
|
||||||
"time-point",
|
"time-point",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "servo-egl"
|
|
||||||
version = "0.2.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "21069a884c33fe6ee596975e1f3849ed88c4ec857fbaf11d33672d8ebe051217"
|
|
||||||
dependencies = [
|
|
||||||
"libc",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "servo-gst-plugin"
|
name = "servo-gst-plugin"
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
|
|
|
@ -5,7 +5,6 @@ members = [
|
||||||
"ports/gstplugin",
|
"ports/gstplugin",
|
||||||
"ports/libsimpleservo/capi/",
|
"ports/libsimpleservo/capi/",
|
||||||
"ports/libsimpleservo/jniapi/",
|
"ports/libsimpleservo/jniapi/",
|
||||||
"ports/libmlservo/",
|
|
||||||
"tests/unit/*",
|
"tests/unit/*",
|
||||||
]
|
]
|
||||||
exclude = [".cargo"]
|
exclude = [".cargo"]
|
||||||
|
|
|
@ -866,6 +866,8 @@ install them, let us know by filing a bug!")
|
||||||
assert self.handle_android_target(target)
|
assert self.handle_android_target(target)
|
||||||
if android and not target:
|
if android and not target:
|
||||||
target = self.config["android"]["target"]
|
target = self.config["android"]["target"]
|
||||||
|
if target and not android:
|
||||||
|
android = self.handle_android_target(target)
|
||||||
return target, android
|
return target, android
|
||||||
|
|
||||||
# A guess about which platforms should use the gstreamer media stack
|
# A guess about which platforms should use the gstreamer media stack
|
||||||
|
@ -919,6 +921,9 @@ install them, let us know by filing a bug!")
|
||||||
if "-p" not in cargo_args: # We're building specific package, that may not have features
|
if "-p" not in cargo_args: # We're building specific package, that may not have features
|
||||||
if self.config["build"]["debug-mozjs"] or debug_mozjs:
|
if self.config["build"]["debug-mozjs"] or debug_mozjs:
|
||||||
features.append("debugmozjs")
|
features.append("debugmozjs")
|
||||||
|
|
||||||
|
features.append("native-bluetooth")
|
||||||
|
|
||||||
if uwp:
|
if uwp:
|
||||||
features.append("no-wgl")
|
features.append("no-wgl")
|
||||||
features.append("uwp")
|
features.append("uwp")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue