mirror of
https://github.com/servo/servo.git
synced 2025-07-29 18:20:24 +01:00
This breaks out some of the parts on #10586, that should be easily mergeable. The idea would be to let you review & merge it first, and then I'll complete the other PR rebase off of this stuff.
55 lines
1.7 KiB
Rust
55 lines
1.7 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
use std::env;
|
|
use std::fs::File;
|
|
use std::io::Write;
|
|
use std::path::Path;
|
|
use std::process::{Command, Stdio, exit};
|
|
|
|
#[cfg(windows)]
|
|
fn find_python() -> String {
|
|
if Command::new("python27.exe").arg("--version").output().is_ok() {
|
|
return "python27.exe".to_owned();
|
|
}
|
|
|
|
if Command::new("python.exe").arg("--version").output().is_ok() {
|
|
return "python.exe".to_owned();
|
|
}
|
|
|
|
panic!("Can't find python (tried python27.exe and python.exe)! Try fixing PATH or setting the PYTHON env var");
|
|
}
|
|
|
|
#[cfg(not(windows))]
|
|
fn find_python() -> String {
|
|
if Command::new("python2.7").arg("--version").output().unwrap().status.success() {
|
|
"python2.7"
|
|
} else {
|
|
"python"
|
|
}.to_owned()
|
|
}
|
|
|
|
fn main() {
|
|
let python = match env::var("PYTHON") {
|
|
Ok(python_path) => python_path,
|
|
Err(_) => find_python(),
|
|
};
|
|
let style = Path::new(file!()).parent().unwrap();
|
|
let mako = style.join("Mako-0.9.1.zip");
|
|
let template = style.join("properties.mako.rs");
|
|
let product = if cfg!(feature = "gecko") { "gecko" } else { "servo" };
|
|
let result = Command::new(python)
|
|
.env("PYTHONPATH", &mako)
|
|
.env("TEMPLATE", &template)
|
|
.env("PRODUCT", product)
|
|
.arg("generate_properties_rs.py")
|
|
.stderr(Stdio::inherit())
|
|
.output()
|
|
.unwrap();
|
|
if !result.status.success() {
|
|
exit(1)
|
|
}
|
|
let out = env::var("OUT_DIR").unwrap();
|
|
File::create(&Path::new(&out).join("properties.rs")).unwrap().write_all(&result.stdout).unwrap();
|
|
}
|