summaryrefslogtreecommitdiffstats
path: root/chromium/build/rust/bindings.rs
blob: b8a6126b50f0210614e39126bf51ad1f09689323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#[allow(dead_code)]
#[allow(non_snake_case)]
#[allow(non_camel_case_types)]
#[allow(non_upper_case_globals)]
mod bindings {
    include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
}

#[cfg(cpp)]
pub use bindings::root::*;
#[cfg(not(cpp))]
pub use bindings::*;