mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Fix libsimpleservo build (#30481)
It seems the build has been broken on desktop platforms. This is a preliminary fix to getting this build on the bots. This is mainly missing includes, but `package-prefs.json` is no longer processed because that was only used for the UWP port (now removed.
This commit is contained in:
parent
8848ed7657
commit
0c5d03b720
5 changed files with 11 additions and 8 deletions
|
@ -62,13 +62,9 @@ fn main() {
|
||||||
.unwrap();
|
.unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Merge prefs.json and package-prefs.json
|
|
||||||
let mut default_prefs = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
let mut default_prefs = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
||||||
default_prefs.push("../../../resources/prefs.json");
|
default_prefs.push("../../../resources/prefs.json");
|
||||||
let mut prefs: Value = serde_json::from_reader(File::open(&default_prefs).unwrap()).unwrap();
|
let prefs: Value = serde_json::from_reader(File::open(&default_prefs).unwrap()).unwrap();
|
||||||
let mut pkg_prefs = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
|
||||||
pkg_prefs.push("../../../resources/package-prefs.json");
|
|
||||||
let pkg_prefs: Value = serde_json::from_reader(File::open(&pkg_prefs).unwrap()).unwrap();
|
|
||||||
let file = File::create(&dest.join("prefs.json")).unwrap();
|
let file = File::create(&dest.join("prefs.json")).unwrap();
|
||||||
serde_json::to_writer(file, &prefs).unwrap();
|
serde_json::to_writer(file, &prefs).unwrap();
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
#![allow(bare_trait_objects)] // Until https://github.com/brendanzab/gl-rs/pull/493
|
#![allow(bare_trait_objects)] // Until https://github.com/brendanzab/gl-rs/pull/493
|
||||||
|
//
|
||||||
pub type ServoGl = std::rc::Rc<dyn servo::gl::Gl>;
|
pub type ServoGl = std::rc::Rc<dyn servo::gl::Gl>;
|
||||||
|
|
||||||
#[cfg(any(target_os = "android", target_os = "windows"))]
|
#[cfg(any(target_os = "android", target_os = "windows"))]
|
||||||
|
@ -12,6 +12,7 @@ pub mod egl {
|
||||||
use std::ffi::CString;
|
use std::ffi::CString;
|
||||||
use std::os::raw::c_void;
|
use std::os::raw::c_void;
|
||||||
|
|
||||||
|
use log::info;
|
||||||
use servo::gl::GlesFns;
|
use servo::gl::GlesFns;
|
||||||
|
|
||||||
pub type EGLNativeWindowType = *const libc::c_void;
|
pub type EGLNativeWindowType = *const libc::c_void;
|
||||||
|
@ -73,6 +74,7 @@ pub mod gl {
|
||||||
CFBundleGetBundleWithIdentifier, CFBundleGetFunctionPointerForName,
|
CFBundleGetBundleWithIdentifier, CFBundleGetFunctionPointerForName,
|
||||||
};
|
};
|
||||||
use core_foundation::string::CFString;
|
use core_foundation::string::CFString;
|
||||||
|
use log::info;
|
||||||
use servo::gl::GlFns;
|
use servo::gl::GlFns;
|
||||||
|
|
||||||
pub fn init() -> Result<crate::gl_glue::ServoGl, &'static str> {
|
pub fn init() -> Result<crate::gl_glue::ServoGl, &'static str> {
|
||||||
|
@ -104,6 +106,7 @@ pub mod gl {
|
||||||
use std::os::raw::c_void;
|
use std::os::raw::c_void;
|
||||||
|
|
||||||
use libloading::{Library, Symbol};
|
use libloading::{Library, Symbol};
|
||||||
|
use log::info;
|
||||||
use servo::gl::GlFns;
|
use servo::gl::GlFns;
|
||||||
|
|
||||||
pub fn init() -> Result<crate::gl_glue::ServoGl, &'static str> {
|
pub fn init() -> Result<crate::gl_glue::ServoGl, &'static str> {
|
||||||
|
|
|
@ -13,6 +13,7 @@ use std::rc::Rc;
|
||||||
|
|
||||||
use getopts::Options;
|
use getopts::Options;
|
||||||
use ipc_channel::ipc::IpcSender;
|
use ipc_channel::ipc::IpcSender;
|
||||||
|
use log::{debug, info, warn};
|
||||||
use servo::compositing::windowing::{
|
use servo::compositing::windowing::{
|
||||||
AnimationState, EmbedderCoordinates, EmbedderEvent, EmbedderMethods, MouseWindowEvent,
|
AnimationState, EmbedderCoordinates, EmbedderEvent, EmbedderMethods, MouseWindowEvent,
|
||||||
WindowMethods,
|
WindowMethods,
|
||||||
|
@ -40,7 +41,7 @@ use servo::webrender_api::ScrollLocation;
|
||||||
use servo::webrender_surfman::WebrenderSurfman;
|
use servo::webrender_surfman::WebrenderSurfman;
|
||||||
use servo::{self, gl, BrowserId, Servo};
|
use servo::{self, gl, BrowserId, Servo};
|
||||||
use servo_media::player::context as MediaPlayerContext;
|
use servo_media::player::context as MediaPlayerContext;
|
||||||
use surfman::{Adapter, Connection, SurfaceType};
|
use surfman::{Connection, SurfaceType};
|
||||||
|
|
||||||
thread_local! {
|
thread_local! {
|
||||||
pub static SERVO: RefCell<Option<ServoGlue>> = RefCell::new(None);
|
pub static SERVO: RefCell<Option<ServoGlue>> = RefCell::new(None);
|
||||||
|
|
|
@ -18,7 +18,8 @@ use std::sync::{Mutex, RwLock};
|
||||||
#[cfg(not(target_os = "windows"))]
|
#[cfg(not(target_os = "windows"))]
|
||||||
use env_logger;
|
use env_logger;
|
||||||
use keyboard_types::Key;
|
use keyboard_types::Key;
|
||||||
use log::LevelFilter;
|
use lazy_static::lazy_static;
|
||||||
|
use log::{debug, error, info, warn, LevelFilter};
|
||||||
use simpleservo::{
|
use simpleservo::{
|
||||||
self, gl_glue, ContextMenuResult, Coordinates, DeviceIntRect, EventLoopWaker, HostTrait,
|
self, gl_glue, ContextMenuResult, Coordinates, DeviceIntRect, EventLoopWaker, HostTrait,
|
||||||
InitOptions, InputMethodType, MediaSessionActionType, MediaSessionPlaybackState, MouseButton,
|
InitOptions, InputMethodType, MediaSessionActionType, MediaSessionPlaybackState, MouseButton,
|
||||||
|
|
|
@ -12,6 +12,8 @@ use std::collections::{BTreeMap, HashMap};
|
||||||
use std::ffi::{CStr, CString};
|
use std::ffi::{CStr, CString};
|
||||||
use std::os::raw::{c_char, c_void};
|
use std::os::raw::{c_char, c_void};
|
||||||
|
|
||||||
|
use log::debug;
|
||||||
|
|
||||||
use crate::simpleservo::{self, PrefValue};
|
use crate::simpleservo::{self, PrefValue};
|
||||||
|
|
||||||
thread_local! {
|
thread_local! {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue