forked from mirrors/gecko-dev
MozReview-Commit-ID: 7hXRyaLssOZ --HG-- rename : third_party/rust/cssparser/src/macros/match_byte.rs => third_party/rust/cssparser/build/match_byte.rs
40 lines
1 KiB
Rust
40 lines
1 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/. */
|
|
|
|
extern crate quote;
|
|
extern crate syn;
|
|
|
|
use std::env;
|
|
use std::path::Path;
|
|
|
|
|
|
#[cfg(feature = "dummy_match_byte")]
|
|
mod codegen {
|
|
use std::path::Path;
|
|
pub fn main(_: &Path) {}
|
|
}
|
|
|
|
#[cfg(not(feature = "dummy_match_byte"))]
|
|
#[path = "build/match_byte.rs"]
|
|
mod match_byte;
|
|
|
|
#[cfg(not(feature = "dummy_match_byte"))]
|
|
mod codegen {
|
|
use match_byte;
|
|
use std::env;
|
|
use std::path::Path;
|
|
|
|
pub fn main(tokenizer_rs: &Path) {
|
|
match_byte::expand(tokenizer_rs,
|
|
&Path::new(&env::var("OUT_DIR").unwrap()).join("tokenizer.rs"));
|
|
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let manifest_dir = env::var("CARGO_MANIFEST_DIR").unwrap();
|
|
let tokenizer_rs = Path::new(&manifest_dir).join("src/tokenizer.rs");
|
|
codegen::main(&tokenizer_rs);
|
|
println!("cargo:rerun-if-changed={}", tokenizer_rs.display());
|
|
}
|